@nu-art/ts-common 0.300.8 → 0.400.1

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.
Files changed (211) hide show
  1. package/consts/consts.js +2 -4
  2. package/consts/consts.js.map +1 -0
  3. package/core/application.d.ts +1 -1
  4. package/core/application.js +3 -6
  5. package/core/application.js.map +1 -0
  6. package/core/debug-flags.d.ts +1 -1
  7. package/core/debug-flags.js +15 -17
  8. package/core/debug-flags.js.map +1 -0
  9. package/core/dispatcher.d.ts +2 -2
  10. package/core/dispatcher.js +7 -8
  11. package/core/dispatcher.js.map +1 -0
  12. package/core/error-handling.d.ts +5 -5
  13. package/core/error-handling.js +7 -9
  14. package/core/error-handling.js.map +1 -0
  15. package/core/exceptions/exceptions.d.ts +2 -2
  16. package/core/exceptions/exceptions.js +33 -44
  17. package/core/exceptions/exceptions.js.map +1 -0
  18. package/core/exceptions/http-codes.d.ts +8 -2
  19. package/core/exceptions/http-codes.js +6 -6
  20. package/core/exceptions/http-codes.js.map +1 -0
  21. package/core/exceptions/types.js +2 -2
  22. package/core/exceptions/types.js.map +1 -0
  23. package/core/logger/BeLogged.d.ts +2 -2
  24. package/core/logger/BeLogged.js +9 -11
  25. package/core/logger/BeLogged.js.map +1 -0
  26. package/core/logger/LogClient.d.ts +3 -1
  27. package/core/logger/LogClient.js +21 -24
  28. package/core/logger/LogClient.js.map +1 -0
  29. package/core/logger/LogClient_BaseRotate.d.ts +2 -2
  30. package/core/logger/LogClient_BaseRotate.js +12 -12
  31. package/core/logger/LogClient_BaseRotate.js.map +1 -0
  32. package/core/logger/LogClient_Browser.d.ts +2 -2
  33. package/core/logger/LogClient_Browser.js +40 -45
  34. package/core/logger/LogClient_Browser.js.map +1 -0
  35. package/core/logger/LogClient_BrowserGroups.d.ts +2 -2
  36. package/core/logger/LogClient_BrowserGroups.js +65 -67
  37. package/core/logger/LogClient_BrowserGroups.js.map +1 -0
  38. package/core/logger/LogClient_ConsoleProxy.d.ts +23 -0
  39. package/core/logger/LogClient_ConsoleProxy.js +89 -0
  40. package/core/logger/LogClient_ConsoleProxy.js.map +1 -0
  41. package/core/logger/LogClient_File.d.ts +1 -1
  42. package/core/logger/LogClient_File.js +6 -30
  43. package/core/logger/LogClient_File.js.map +1 -0
  44. package/core/logger/LogClient_Function.d.ts +2 -2
  45. package/core/logger/LogClient_Function.js +6 -8
  46. package/core/logger/LogClient_Function.js.map +1 -0
  47. package/core/logger/LogClient_MemBuffer.d.ts +2 -2
  48. package/core/logger/LogClient_MemBuffer.js +19 -21
  49. package/core/logger/LogClient_MemBuffer.js.map +1 -0
  50. package/core/logger/LogClient_Terminal.d.ts +2 -2
  51. package/core/logger/LogClient_Terminal.js +16 -21
  52. package/core/logger/LogClient_Terminal.js.map +1 -0
  53. package/core/logger/Logger.d.ts +2 -2
  54. package/core/logger/Logger.js +37 -39
  55. package/core/logger/Logger.js.map +1 -0
  56. package/core/logger/types.js +4 -6
  57. package/core/logger/types.js.map +1 -0
  58. package/core/logger/utils.d.ts +1 -1
  59. package/core/logger/utils.js +10 -15
  60. package/core/logger/utils.js.map +1 -0
  61. package/core/module-manager.d.ts +8 -6
  62. package/core/module-manager.js +28 -26
  63. package/core/module-manager.js.map +1 -0
  64. package/core/module.d.ts +5 -5
  65. package/core/module.js +28 -28
  66. package/core/module.js.map +1 -0
  67. package/csv.d.ts +2 -2
  68. package/csv.js +3 -18
  69. package/csv.js.map +1 -0
  70. package/db/consts.d.ts +3 -0
  71. package/db/consts.js +17 -7
  72. package/db/consts.js.map +1 -0
  73. package/db/dependencies-test.js +2 -2
  74. package/db/dependencies-test.js.map +1 -0
  75. package/db/types.d.ts +10 -2
  76. package/db/types.js +2 -2
  77. package/db/types.js.map +1 -0
  78. package/esm.d.ts +1 -0
  79. package/esm.js +4 -0
  80. package/esm.js.map +1 -0
  81. package/index.d.ts +50 -49
  82. package/index.js +51 -65
  83. package/index.js.map +1 -0
  84. package/mem-storage/MemStorage.d.ts +3 -1
  85. package/mem-storage/MemStorage.js +90 -72
  86. package/mem-storage/MemStorage.js.map +1 -0
  87. package/mem-storage/index.d.ts +1 -0
  88. package/mem-storage/index.js +2 -0
  89. package/mem-storage/index.js.map +1 -0
  90. package/modules/CSVModule.d.ts +2 -2
  91. package/modules/CSVModule.js +22 -48
  92. package/modules/CSVModule.js.map +1 -0
  93. package/modules/CSVModuleV3.d.ts +2 -2
  94. package/modules/CSVModuleV3.js +60 -86
  95. package/modules/CSVModuleV3.js.map +1 -0
  96. package/modules/CliParamsModule.d.ts +2 -2
  97. package/modules/CliParamsModule.js +23 -28
  98. package/modules/CliParamsModule.js.map +1 -0
  99. package/modules/JSONCSVModule.d.ts +2 -2
  100. package/modules/JSONCSVModule.js +56 -78
  101. package/modules/JSONCSVModule.js.map +1 -0
  102. package/modules/csv-serializer.d.ts +1 -1
  103. package/modules/csv-serializer.js +11 -5
  104. package/modules/csv-serializer.js.map +1 -0
  105. package/package.json +20 -11
  106. package/replacer-v2/ReplacerV2.d.ts +1 -1
  107. package/replacer-v2/ReplacerV2.js +6 -9
  108. package/replacer-v2/ReplacerV2.js.map +1 -0
  109. package/test-index.d.ts +2 -2
  110. package/test-index.js +3 -18
  111. package/test-index.js.map +1 -0
  112. package/testing/consts.d.ts +13 -2
  113. package/testing/consts.js +66 -26
  114. package/testing/consts.js.map +1 -0
  115. package/testing/test-template.test.d.ts +1 -0
  116. package/testing/test-template.test.js +42 -0
  117. package/testing/test-template.test.js.map +1 -0
  118. package/testing/types.d.ts +17 -5
  119. package/testing/types.js +2 -2
  120. package/testing/types.js.map +1 -0
  121. package/testing/workspace-creator.d.ts +10 -0
  122. package/testing/workspace-creator.js +79 -0
  123. package/testing/workspace-creator.js.map +1 -0
  124. package/tools/Replacer.d.ts +2 -2
  125. package/tools/Replacer.js +22 -24
  126. package/tools/Replacer.js.map +1 -0
  127. package/tools/get-log-style.js +4 -6
  128. package/tools/get-log-style.js.map +1 -0
  129. package/utils/FileSystemUtils.d.ts +34 -0
  130. package/utils/FileSystemUtils.js +153 -0
  131. package/utils/FileSystemUtils.js.map +1 -0
  132. package/utils/array-tools.d.ts +4 -4
  133. package/utils/array-tools.js +56 -83
  134. package/utils/array-tools.js.map +1 -0
  135. package/utils/conflict-tools.d.ts +1 -0
  136. package/utils/conflict-tools.js +3 -0
  137. package/utils/conflict-tools.js.map +1 -0
  138. package/utils/crypto-tools.d.ts +44 -0
  139. package/utils/crypto-tools.js +101 -10
  140. package/utils/crypto-tools.js.map +1 -0
  141. package/utils/date-time-tools.d.ts +48 -4
  142. package/utils/date-time-tools.js +166 -64
  143. package/utils/date-time-tools.js.map +1 -0
  144. package/utils/db-object-tools.d.ts +7 -2
  145. package/utils/db-object-tools.js +20 -20
  146. package/utils/db-object-tools.js.map +1 -0
  147. package/utils/exception-tools.js +13 -15
  148. package/utils/exception-tools.js.map +1 -0
  149. package/utils/filter-tools.js +48 -48
  150. package/utils/filter-tools.js.map +1 -0
  151. package/utils/hash-tools.js +14 -22
  152. package/utils/hash-tools.js.map +1 -0
  153. package/utils/index.d.ts +27 -0
  154. package/utils/index.js +28 -0
  155. package/utils/index.js.map +1 -0
  156. package/utils/json-tools.js +5 -8
  157. package/utils/json-tools.js.map +1 -0
  158. package/utils/merge-tools.d.ts +9 -0
  159. package/utils/merge-tools.js +18 -19
  160. package/utils/merge-tools.js.map +1 -0
  161. package/utils/mimetype-tools.d.ts +1 -0
  162. package/utils/mimetype-tools.js +26 -27
  163. package/utils/mimetype-tools.js.map +1 -0
  164. package/utils/number-tools.js +3 -7
  165. package/utils/number-tools.js.map +1 -0
  166. package/utils/object-tools.d.ts +15 -1
  167. package/utils/object-tools.js +110 -33
  168. package/utils/object-tools.js.map +1 -0
  169. package/utils/promise-tools.d.ts +5 -0
  170. package/utils/promise-tools.js +9 -5
  171. package/utils/promise-tools.js.map +1 -0
  172. package/utils/query-params.js +3 -6
  173. package/utils/query-params.js.map +1 -0
  174. package/utils/queue-v2.d.ts +1 -1
  175. package/utils/queue-v2.js +72 -73
  176. package/utils/queue-v2.js.map +1 -0
  177. package/utils/queue.d.ts +1 -1
  178. package/utils/queue.js +15 -17
  179. package/utils/queue.js.map +1 -0
  180. package/utils/random-tools.js +7 -11
  181. package/utils/random-tools.js.map +1 -0
  182. package/utils/storage-capacity-tools.js +7 -9
  183. package/utils/storage-capacity-tools.js.map +1 -0
  184. package/utils/string-tools.js +17 -31
  185. package/utils/string-tools.js.map +1 -0
  186. package/utils/time-proxy.d.ts +8 -0
  187. package/utils/time-proxy.js +10 -0
  188. package/utils/time-proxy.js.map +1 -0
  189. package/utils/tools.d.ts +1 -1
  190. package/utils/tools.js +18 -28
  191. package/utils/tools.js.map +1 -0
  192. package/utils/types.d.ts +9 -3
  193. package/utils/types.js +2 -4
  194. package/utils/types.js.map +1 -0
  195. package/utils/ui-tools.js +6 -12
  196. package/utils/ui-tools.js.map +1 -0
  197. package/utils/url-tools.d.ts +5 -0
  198. package/utils/url-tools.js +20 -0
  199. package/utils/url-tools.js.map +1 -0
  200. package/utils/version-tools.js +17 -12
  201. package/utils/version-tools.js.map +1 -0
  202. package/validator/type-validators.d.ts +14 -10
  203. package/validator/type-validators.js +84 -105
  204. package/validator/type-validators.js.map +1 -0
  205. package/validator/validator-core.d.ts +4 -4
  206. package/validator/validator-core.js +16 -21
  207. package/validator/validator-core.js.map +1 -0
  208. package/validator/validators.d.ts +9 -5
  209. package/validator/validators.js +48 -47
  210. package/validator/validators.js.map +1 -0
  211. package/tsconfig.json +0 -23
package/utils/types.js CHANGED
@@ -1,4 +1,3 @@
1
- "use strict";
2
1
  /*
3
2
  * ts-common is the basic building blocks of our typescript projects
4
3
  *
@@ -16,7 +15,6 @@
16
15
  * See the License for the specific language governing permissions and
17
16
  * limitations under the License.
18
17
  */
19
- Object.defineProperty(exports, "__esModule", { value: true });
20
- exports.Void = void 0;
21
- exports.Void = (() => {
18
+ export const Void = (() => {
22
19
  })();
20
+ //# sourceMappingURL=types.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"types.js","sourceRoot":"/Users/tacb0ss/dev/nu-art/beamz/_thunderstorm/ts-common/src/main/","sources":["utils/types.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;GAgBG;AA8KH,MAAM,CAAC,MAAM,IAAI,GAAG,CAAC,GAAG,EAAE;AAC1B,CAAC,CAAC,EAAE,CAAC"}
package/utils/ui-tools.js CHANGED
@@ -1,6 +1,3 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.awaitedDebounce = exports.queuedDebounce = exports.debounce = void 0;
4
1
  /**
5
2
  * Creates a debounced function that delays invoking the provided function until after a specified
6
3
  * timeout has elapsed since the last time the debounced function was called. It also ensures that
@@ -30,7 +27,7 @@ exports.awaitedDebounce = exports.queuedDebounce = exports.debounce = void 0;
30
27
  * // The original function will be invoked after 500ms since the last call,
31
28
  * // or at least once after 1000ms, regardless of continuous calls.
32
29
  */
33
- const debounce = (func, timeout = 500, maxTimeout = 1000) => {
30
+ export const debounce = (func, timeout = 500, maxTimeout = 1000) => {
34
31
  let timer;
35
32
  let defaultTimer;
36
33
  return (...args) => {
@@ -48,8 +45,7 @@ const debounce = (func, timeout = 500, maxTimeout = 1000) => {
48
45
  }
49
46
  };
50
47
  };
51
- exports.debounce = debounce;
52
- const queuedDebounce = (func, timeout = 500, maxTimeout = 1000) => {
48
+ export const queuedDebounce = (func, timeout = 500, maxTimeout = 1000) => {
53
49
  let timer;
54
50
  let defaultTimer;
55
51
  let running = false;
@@ -83,8 +79,7 @@ const queuedDebounce = (func, timeout = 500, maxTimeout = 1000) => {
83
79
  };
84
80
  return debounceFunc;
85
81
  };
86
- exports.queuedDebounce = queuedDebounce;
87
- const awaitedDebounce = (params) => {
82
+ export const awaitedDebounce = (params) => {
88
83
  const timers = {};
89
84
  const _clearTimeout = (timer) => {
90
85
  clearTimeout(timers[timer]);
@@ -96,8 +91,7 @@ const awaitedDebounce = (params) => {
96
91
  };
97
92
  return (...args) => {
98
93
  return new Promise((resolve, reject) => {
99
- var _a, _b;
100
- const timeout = (_a = params.timeout) !== null && _a !== void 0 ? _a : 500;
94
+ const timeout = params.timeout ?? 500;
101
95
  _clearTimeout('timer');
102
96
  timers.timer = setTimeout(async () => {
103
97
  try {
@@ -110,7 +104,7 @@ const awaitedDebounce = (params) => {
110
104
  }
111
105
  }, timeout);
112
106
  if (!timers.fallbackTimer) {
113
- const fallbackTimeout = (_b = params.fallbackTimeout) !== null && _b !== void 0 ? _b : 1000;
107
+ const fallbackTimeout = params.fallbackTimeout ?? 1000;
114
108
  timers.fallbackTimer = setTimeout(async () => {
115
109
  try {
116
110
  _clearTimeouts();
@@ -125,4 +119,4 @@ const awaitedDebounce = (params) => {
125
119
  });
126
120
  };
127
121
  };
128
- exports.awaitedDebounce = awaitedDebounce;
122
+ //# sourceMappingURL=ui-tools.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ui-tools.js","sourceRoot":"/Users/tacb0ss/dev/nu-art/beamz/_thunderstorm/ts-common/src/main/","sources":["utils/ui-tools.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA4BG;AACH,MAAM,CAAC,MAAM,QAAQ,GAAG,CAAqB,IAA6C,EAAE,UAAkB,GAAG,EAAE,aAAqB,IAAI,EAAE,EAAE;IAC/I,IAAI,KAAqB,CAAC;IAC1B,IAAI,YAAwC,CAAC;IAC7C,OAAO,CAAC,GAAG,IAAU,EAAE,EAAE;QACxB,YAAY,CAAC,KAAK,CAAC,CAAC;QACpB,KAAK,GAAG,UAAU,CAAC,GAAG,EAAE;YACvB,IAAI,CAAC,GAAG,IAAI,CAAC,CAAC;YACd,YAAY,CAAC,YAAY,CAAC,CAAC;YAC3B,YAAY,GAAG,SAAS,CAAC;QAC1B,CAAC,EAAE,OAAO,CAAC,CAAC;QACZ,IAAI,CAAC,YAAY,EAAE,CAAC;YACnB,YAAY,GAAG,UAAU,CAAC,GAAG,EAAE;gBAC9B,IAAI,CAAC,GAAG,IAAI,CAAC,CAAC;gBACd,YAAY,GAAG,SAAS,CAAC;YAC1B,CAAC,EAAE,UAAU,CAAC,CAAC;QAChB,CAAC;IACF,CAAC,CAAC;AACH,CAAC,CAAC;AAEF,MAAM,CAAC,MAAM,cAAc,GAAG,CAAqB,IAA6C,EAAE,UAAkB,GAAG,EAAE,aAAqB,IAAI,EAAE,EAAE;IACrJ,IAAI,KAAqB,CAAC;IAC1B,IAAI,YAAwC,CAAC;IAC7C,IAAI,OAAO,GAAY,KAAK,CAAC;IAE7B,MAAM,YAAY,GAAG,CAAC,GAAG,IAAU,EAAE,EAAE;QACtC,YAAY,CAAC,KAAK,CAAC,CAAC;QACpB,KAAK,GAAG,UAAU,CAAC,KAAK,IAAI,EAAE;YAC7B,YAAY,CAAC,YAAY,CAAC,CAAC;YAC3B,YAAY,GAAG,SAAS,CAAC;YACzB,MAAM,QAAQ,CAAC,GAAG,IAAI,CAAC,CAAC;QACzB,CAAC,EAAE,OAAO,CAAC,CAAC;QACZ,IAAI,CAAC,YAAY,EAAE,CAAC;YACnB,YAAY,GAAG,UAAU,CAAC,KAAK,IAAI,EAAE;gBACpC,YAAY,GAAG,SAAS,CAAC;gBACzB,MAAM,QAAQ,CAAC,GAAG,IAAI,CAAC,CAAC;YACzB,CAAC,EAAE,UAAU,CAAC,CAAC;QAChB,CAAC;IACF,CAAC,CAAC;IAEF,MAAM,QAAQ,GAAG,KAAK,EAAE,GAAG,IAAU,EAAE,EAAE;QACxC,IAAI,OAAO,EAAE,CAAC;YACb,YAAY,CAAC,YAAY,CAAC,CAAC;YAC3B,YAAY,GAAG,SAAS,CAAC;YACzB,OAAO,YAAY,CAAC,GAAG,IAAI,CAAC,CAAC;QAC9B,CAAC;QAED,IAAI,CAAC;YACJ,OAAO,GAAG,IAAI,CAAC;YACf,MAAM,IAAI,CAAC,GAAG,IAAI,CAAC,CAAC;QACrB,CAAC;gBAAS,CAAC;YACV,OAAO,GAAG,KAAK,CAAC;QACjB,CAAC;IACF,CAAC,CAAC;IAEF,OAAO,YAAY,CAAC;AACrB,CAAC,CAAC;AAeF,MAAM,CAAC,MAAM,eAAe,GAAG,CAAwC,MAAyC,EAA8C,EAAE;IAC/J,MAAM,MAAM,GAAW,EAAE,CAAC;IAC1B,MAAM,aAAa,GAAG,CAAC,KAAmB,EAAE,EAAE;QAC7C,YAAY,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC,CAAC;QAC5B,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC;IACtB,CAAC,CAAC;IAEF,MAAM,cAAc,GAAG,GAAG,EAAE;QAC3B,aAAa,CAAC,OAAO,CAAC,CAAC;QACvB,aAAa,CAAC,eAAe,CAAC,CAAC;IAChC,CAAC,CAAC;IAEF,OAAO,CAAC,GAAG,IAAU,EAAE,EAAE;QACxB,OAAO,IAAI,OAAO,CAAc,CAAC,OAAO,EAAE,MAAM,EAAE,EAAE;YACnD,MAAM,OAAO,GAAG,MAAM,CAAC,OAAO,IAAI,GAAG,CAAC;YACtC,aAAa,CAAC,OAAO,CAAC,CAAC;YACvB,MAAM,CAAC,KAAK,GAAG,UAAU,CAAC,KAAK,IAAI,EAAE;gBACpC,IAAI,CAAC;oBACJ,cAAc,EAAE,CAAC;oBACjB,MAAM,MAAM,GAAG,MAAM,MAAM,CAAC,IAAI,CAAC,GAAG,IAAI,CAAC,CAAC;oBAC1C,OAAO,CAAC,MAAM,CAAC,CAAC;gBACjB,CAAC;gBAAC,OAAO,GAAQ,EAAE,CAAC;oBACnB,MAAM,CAAC,GAAG,CAAC,CAAC;gBACb,CAAC;YACF,CAAC,EAAE,OAAO,CAAC,CAAC;YAEZ,IAAI,CAAC,MAAM,CAAC,aAAa,EAAE,CAAC;gBAC3B,MAAM,eAAe,GAAG,MAAM,CAAC,eAAe,IAAI,IAAI,CAAC;gBACvD,MAAM,CAAC,aAAa,GAAG,UAAU,CAAC,KAAK,IAAI,EAAE;oBAC5C,IAAI,CAAC;wBACJ,cAAc,EAAE,CAAC;wBACjB,MAAM,MAAM,GAAG,MAAM,MAAM,CAAC,IAAI,CAAC,GAAG,IAAI,CAAC,CAAC;wBAC1C,OAAO,CAAC,MAAM,CAAC,CAAC;oBACjB,CAAC;oBAAC,OAAO,GAAQ,EAAE,CAAC;wBACnB,MAAM,CAAC,GAAG,CAAC,CAAC;oBACb,CAAC;gBACF,CAAC,EAAE,eAAe,CAAC,CAAC;YACrB,CAAC;QACF,CAAC,CAAC,CAAC;IACJ,CAAC,CAAC;AACH,CAAC,CAAC"}
@@ -0,0 +1,5 @@
1
+ /**
2
+ * Generic subdomain extractor.
3
+ * @param origin - The origin URL from which to extract the subdomain.
4
+ */
5
+ export declare const extractSubdomain: (origin: string) => string | undefined;
@@ -0,0 +1,20 @@
1
+ /**
2
+ * Generic subdomain extractor.
3
+ * @param origin - The origin URL from which to extract the subdomain.
4
+ */
5
+ export const extractSubdomain = (origin) => {
6
+ try {
7
+ const url = new URL(origin);
8
+ const hostname = url.hostname;
9
+ const parts = hostname.split('.');
10
+ if (parts.length > 1) {
11
+ return parts.slice(0, -1).join('.'); // Extract subdomain (everything before the last part)
12
+ }
13
+ return undefined; // No subdomain
14
+ }
15
+ catch (error) {
16
+ console.error(`Invalid origin: ${origin}`, error);
17
+ return undefined;
18
+ }
19
+ };
20
+ //# sourceMappingURL=url-tools.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"url-tools.js","sourceRoot":"/Users/tacb0ss/dev/nu-art/beamz/_thunderstorm/ts-common/src/main/","sources":["utils/url-tools.ts"],"names":[],"mappings":"AAAA;;;GAGG;AACH,MAAM,CAAC,MAAM,gBAAgB,GAAG,CAAC,MAAc,EAAsB,EAAE;IACnE,IAAI,CAAC;QACD,MAAM,GAAG,GAAG,IAAI,GAAG,CAAC,MAAM,CAAC,CAAC;QAC5B,MAAM,QAAQ,GAAG,GAAG,CAAC,QAAQ,CAAC;QAE9B,MAAM,KAAK,GAAG,QAAQ,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC;QAClC,IAAI,KAAK,CAAC,MAAM,GAAG,CAAC,EAAE,CAAC;YACnB,OAAO,KAAK,CAAC,KAAK,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC,sDAAsD;QAC/F,CAAC;QAED,OAAO,SAAS,CAAC,CAAC,eAAe;IACrC,CAAC;IAAC,OAAO,KAAK,EAAE,CAAC;QACb,OAAO,CAAC,KAAK,CAAC,mBAAmB,MAAM,EAAE,EAAE,KAAK,CAAC,CAAC;QAClD,OAAO,SAAS,CAAC;IACrB,CAAC;AACL,CAAC,CAAC"}
@@ -1,4 +1,3 @@
1
- "use strict";
2
1
  /*
3
2
  * ts-common is the basic building blocks of our typescript projects
4
3
  *
@@ -16,12 +15,9 @@
16
15
  * See the License for the specific language governing permissions and
17
16
  * limitations under the License.
18
17
  */
19
- Object.defineProperty(exports, "__esModule", { value: true });
20
- exports.compareVersions = compareVersions;
21
- exports.validateVersion = validateVersion;
22
- const exceptions_1 = require("../core/exceptions/exceptions");
23
- const validator_core_1 = require("../validator/validator-core");
24
- const validators_1 = require("../validator/validators");
18
+ import { BadImplementationException } from '../core/exceptions/exceptions.js';
19
+ import { tsValidateResult } from '../validator/validator-core.js';
20
+ import { tsValidateVersion } from '../validator/validators.js';
25
21
  /**
26
22
  *
27
23
  * @param firstVersion a version
@@ -31,11 +27,19 @@ const validators_1 = require("../validator/validators");
31
27
  * 0 if versions match
32
28
  * 1 if second is greater
33
29
  */
34
- function compareVersions(firstVersion, secondVersion) {
30
+ export function compareVersions(firstVersion, secondVersion) {
35
31
  if (!firstVersion)
36
- throw new exceptions_1.BadImplementationException('First version is undefined');
32
+ throw new BadImplementationException('First version is undefined');
37
33
  if (!secondVersion)
38
- throw new exceptions_1.BadImplementationException('Second version is undefined');
34
+ throw new BadImplementationException('Second version is undefined');
35
+ const extractedFirstVersion = firstVersion.match(/\d+\.\d+\.\d+/)?.[0];
36
+ if (!extractedFirstVersion)
37
+ throw new BadImplementationException(`Unable to extract calculable version from '${firstVersion}'`);
38
+ firstVersion = extractedFirstVersion;
39
+ const extractedSecondVersion = secondVersion.match(/\d+\.\d+\.\d+/)?.[0];
40
+ if (!extractedSecondVersion)
41
+ throw new BadImplementationException(`Unable to extract calculable version from '${secondVersion}'`);
42
+ secondVersion = extractedSecondVersion;
39
43
  const firstVersionAsArray = firstVersion.split('\.');
40
44
  const secondVersionAsArray = secondVersion.split('\.');
41
45
  for (let i = 0; i < firstVersionAsArray.length; i++) {
@@ -54,6 +58,7 @@ function compareVersions(firstVersion, secondVersion) {
54
58
  * Expects a version of XXX.YYY.ZZZ and nothing else
55
59
  * @param version
56
60
  */
57
- function validateVersion(version) {
58
- return (0, validator_core_1.tsValidateResult)(version, validators_1.tsValidateVersion);
61
+ export function validateVersion(version) {
62
+ return tsValidateResult(version, tsValidateVersion);
59
63
  }
64
+ //# sourceMappingURL=version-tools.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"version-tools.js","sourceRoot":"/Users/tacb0ss/dev/nu-art/beamz/_thunderstorm/ts-common/src/main/","sources":["utils/version-tools.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;GAgBG;AAGH,OAAO,EAAC,0BAA0B,EAAC,MAAM,kCAAkC,CAAC;AAC5E,OAAO,EAAC,gBAAgB,EAAC,MAAM,gCAAgC,CAAC;AAChE,OAAO,EAAC,iBAAiB,EAAC,MAAM,4BAA4B,CAAC;AAE7D;;;;;;;;GAQG;AACH,MAAM,UAAU,eAAe,CAAC,YAAoB,EAAE,aAAqB;IAC1E,IAAI,CAAC,YAAY;QAChB,MAAM,IAAI,0BAA0B,CAAC,4BAA4B,CAAC,CAAC;IAEpE,IAAI,CAAC,aAAa;QACjB,MAAM,IAAI,0BAA0B,CAAC,6BAA6B,CAAC,CAAC;IAErE,MAAM,qBAAqB,GAAG,YAAY,CAAC,KAAK,CAAC,eAAe,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC;IACvE,IAAI,CAAC,qBAAqB;QACzB,MAAM,IAAI,0BAA0B,CAAC,8CAA8C,YAAY,GAAG,CAAC,CAAC;IACrG,YAAY,GAAG,qBAAqB,CAAC;IAErC,MAAM,sBAAsB,GAAG,aAAa,CAAC,KAAK,CAAC,eAAe,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC;IACzE,IAAI,CAAC,sBAAsB;QAC1B,MAAM,IAAI,0BAA0B,CAAC,8CAA8C,aAAa,GAAG,CAAC,CAAC;IACtG,aAAa,GAAG,sBAAsB,CAAC;IAEvC,MAAM,mBAAmB,GAAG,YAAY,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC;IACrD,MAAM,oBAAoB,GAAG,aAAa,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC;IACvD,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,mBAAmB,CAAC,MAAM,EAAE,CAAC,EAAE,EAAE,CAAC;QACrD,MAAM,SAAS,GAAG,CAAC,oBAAoB,CAAC,CAAC,CAAC,CAAC;QAC3C,MAAM,QAAQ,GAAG,CAAC,mBAAmB,CAAC,CAAC,CAAC,CAAC;QACzC,IAAI,SAAS,GAAG,QAAQ;YACvB,OAAO,CAAC,CAAC;QAEV,IAAI,SAAS,KAAK,QAAQ;YACzB,SAAS;QAEV,IAAI,SAAS,GAAG,QAAQ;YACvB,OAAO,CAAC,CAAC,CAAC;IACZ,CAAC;IAED,OAAO,CAAC,CAAC;AACV,CAAC;AAED;;;GAGG;AACH,MAAM,UAAU,eAAe,CAAC,OAAe;IAC9C,OAAO,gBAAgB,CAAC,OAAO,EAAE,iBAAiB,CAAC,CAAC;AACrD,CAAC"}
@@ -1,19 +1,23 @@
1
- import { InvalidResult, InvalidResultArray, InvalidResultObject, Validator, ValidatorTypeResolver } from './validator-core';
2
- import { TimeRange } from '../utils/date-time-tools';
3
- import { ArrayType, AuditBy, RangeTimestamp, TypedMap } from '../utils/types';
4
- export declare const tsValidateDynamicObject: <T extends object>(valuesValidator: ValidatorTypeResolver<T[keyof T]>, keysValidator: ValidatorTypeResolver<string>, mandatory?: boolean) => (import("./validator-core").ValidatorImpl<any> | ((input?: T) => InvalidResultObject<T> | undefined))[];
5
- export declare const tsValidateUnion: <T>(validators: ValidatorTypeResolver<T>[], mandatory?: boolean) => (import("./validator-core").ValidatorImpl<any> | ((input?: any) => InvalidResultArray<T>[] | undefined))[];
1
+ import { InvalidResult, InvalidResultArray, InvalidResultObject, Validator, ValidatorTypeResolver } from './validator-core.js';
2
+ import { TimeRange } from '../utils/date-time-tools.js';
3
+ import { ArrayType, AuditBy, RangeTimestamp, TypedMap } from '../utils/types.js';
4
+ export declare const tsValidateDynamicObject: <T extends object>(valuesValidator: ValidatorTypeResolver<T[keyof T]>, keysValidator: ValidatorTypeResolver<string>, mandatory?: boolean) => (import("./validator-core.js").ValidatorImpl<any> | ((input?: T) => InvalidResultObject<T> | undefined))[];
5
+ export declare const tsValidateUnion: <T>(validators: ValidatorTypeResolver<T>[], mandatory?: boolean) => (import("./validator-core.js").ValidatorImpl<any> | ((input?: any) => InvalidResultArray<T>[] | undefined))[];
6
6
  export declare const tsValidateCustom: <T>(processor: (input?: T, parentInput?: any) => InvalidResult<T>, mandatory?: boolean) => Validator<T>[];
7
7
  declare const typeFunc: (type: any) => "string" | "number" | "bigint" | "boolean" | "symbol" | "undefined" | "object" | "function";
8
8
  type types = ReturnType<typeof typeFunc>;
9
9
  type validatorObject<T> = {
10
10
  [k in types]?: ValidatorTypeResolver<T>;
11
11
  };
12
- export declare const tsValidateUnionV3: <T>(validatorObject: validatorObject<T>, mandatory?: boolean) => (import("./validator-core").ValidatorImpl<any> | ((input?: T) => "Input does not match any of the possible types" | InvalidResult<T> | undefined))[];
13
- export declare const tsValidateArray: <T extends any[], I extends ArrayType<T> = ArrayType<T>>(validator: ValidatorTypeResolver<I> | ValidatorTypeResolver<I>[], mandatory?: boolean, minimumLength?: number) => Validator<I[]>;
12
+ export declare const tsValidateUnionV3: <T>(validatorObject: validatorObject<T>, mandatory?: boolean) => (import("./validator-core.js").ValidatorImpl<any> | ((input?: T) => "Input does not match any of the possible types" | InvalidResult<T> | undefined))[];
13
+ export declare const tsValidateArray: <T extends any[], I extends ArrayType<T> = ArrayType<T>>(validator: ValidatorTypeResolver<I> | ValidatorTypeResolver<I>[], mandatory?: boolean, minimumLength?: number, strict?: boolean) => Validator<I[]>;
14
14
  export declare const tsValidateString: (length?: number | [number, number], mandatory?: boolean) => Validator<string>;
15
+ export declare const tsValidateAnyString: Validator<string>;
16
+ export declare const tsValidateOptionalAnyString: Validator<string>;
15
17
  export declare const tsValidateStringMinLength: (length: number, mandatory?: boolean) => Validator<string>;
16
18
  export declare const tsValidateNumber: (mandatory?: boolean) => Validator<number>;
19
+ export declare const tsValidateAnyNumber: Validator<number>;
20
+ export declare const tsValidateOptionalAnyNumber: Validator<number>;
17
21
  export declare const tsValidateEnum: (enumType: TypedMap<number | string>, mandatory?: boolean) => Validator<number | string>;
18
22
  export declare const tsValidateBoolean: (mandatory?: boolean) => Validator<boolean>;
19
23
  export declare const tsValidateValue: <T>(values: T[] | ReadonlyArray<T>, mandatory?: boolean) => Validator<any>;
@@ -23,12 +27,12 @@ export declare const tsValidateRegexp: (regexp: RegExp, mandatory?: boolean) =>
23
27
  export declare const tsValidateTimestamp: (interval?: number, mandatory?: boolean) => Validator<number>;
24
28
  export declare const tsValidateAudit: (range?: RangeTimestamp) => (audit?: AuditBy) => string | undefined;
25
29
  export declare const tsValidateTimeRange: (mandatory?: boolean) => Validator<TimeRange>;
26
- export declare const tsValidateNonMandatoryObject: <T extends object | undefined>(validator: ValidatorTypeResolver<T>) => (import("./validator-core").ValidatorImpl<any> | ((input?: T) => InvalidResult<T> | undefined))[];
27
- export declare const tsValidateOptionalObject: <T extends object | undefined>(validator: ValidatorTypeResolver<T>) => (import("./validator-core").ValidatorImpl<any> | ((input?: T) => InvalidResult<T> | undefined))[];
30
+ export declare const tsValidateNonMandatoryObject: <T extends object | undefined>(validator: ValidatorTypeResolver<T>) => (import("./validator-core.js").ValidatorImpl<any> | ((input?: T) => InvalidResult<T> | undefined))[];
31
+ export declare const tsValidateOptionalObject: <T extends object | undefined>(validator: ValidatorTypeResolver<T>) => (import("./validator-core.js").ValidatorImpl<any> | ((input?: T) => InvalidResult<T> | undefined))[];
28
32
  export declare const tsValidator_valueByKey: <T>(validatorObject: {
29
33
  [k: string]: ValidatorTypeResolver<any>;
30
34
  }, prop?: string) => ValidatorTypeResolver<T>;
31
- export declare const tsValidator_ArrayOfObjectsByKey: <T extends Object>(key: keyof T, validatorMap: {
35
+ export declare const tsValidator_ArrayOfObjectsByKey: <T extends object>(key: keyof T, validatorMap: {
32
36
  [k: string]: ValidatorTypeResolver<T>;
33
37
  }) => Validator<T[]>;
34
38
  export declare const tsValidator_stringOrNumber: (mandatory?: boolean) => ValidatorTypeResolver<string | number>;
@@ -1,80 +1,73 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.tsValidateIpAddress = exports.tsValidator_stringOrNumber = exports.tsValidator_ArrayOfObjectsByKey = exports.tsValidator_valueByKey = exports.tsValidateOptionalObject = exports.tsValidateNonMandatoryObject = exports.tsValidateTimeRange = exports.tsValidateAudit = exports.tsValidateTimestamp = exports.tsValidateRegexp = exports.tsValidateRange = exports.tsValidateIsInRange = exports.tsValidateValue = exports.tsValidateBoolean = exports.tsValidateEnum = exports.tsValidateNumber = exports.tsValidateStringMinLength = exports.tsValidateString = exports.tsValidateArray = exports.tsValidateUnionV3 = exports.tsValidateCustom = exports.tsValidateUnion = exports.tsValidateDynamicObject = void 0;
4
- const tools_1 = require("../utils/tools");
5
- const validator_core_1 = require("./validator-core");
6
- const date_time_tools_1 = require("../utils/date-time-tools");
7
- const array_tools_1 = require("../utils/array-tools");
8
- const object_tools_1 = require("../utils/object-tools");
9
- const exceptions_1 = require("../core/exceptions/exceptions");
10
- const tsValidateDynamicObject = (valuesValidator, keysValidator, mandatory = true) => {
11
- return [(0, validator_core_1.tsValidateExists)(mandatory),
1
+ import { __stringify, exists } from '../utils/tools.js';
2
+ import { tsValidateExists, tsValidateResult } from './validator-core.js';
3
+ import { currentTimeMillis } from '../utils/date-time-tools.js';
4
+ import { asArray, filterInstances } from '../utils/array-tools.js';
5
+ import { _keys } from '../utils/object-tools.js';
6
+ import { BadImplementationException } from '../core/exceptions/exceptions.js';
7
+ export const tsValidateDynamicObject = (valuesValidator, keysValidator, mandatory = true) => {
8
+ return [tsValidateExists(mandatory),
12
9
  (input) => {
13
10
  if (!input)
14
11
  return;
15
- const keys = (0, object_tools_1._keys)(input);
12
+ const keys = _keys(input);
16
13
  const _result = keys.reduce((res, key) => {
17
- const _valRes = (0, validator_core_1.tsValidateResult)(input[key], valuesValidator);
18
- const _keyRes = (0, validator_core_1.tsValidateResult)(key, keysValidator);
14
+ const _valRes = tsValidateResult(input[key], valuesValidator);
15
+ const _keyRes = tsValidateResult(key, keysValidator);
19
16
  if (_valRes && _keyRes)
20
17
  res[key] = `Key: ${_keyRes}}\nValue: ${_valRes}`;
21
18
  else if (_valRes)
22
- res[key] = 'Value: ' + _valRes;
19
+ res[key] = 'Value: ' + __stringify(_valRes, true);
23
20
  else if (_keyRes)
24
- res[key] = 'Key: ' + _keyRes;
21
+ res[key] = 'Key: ' + __stringify(_keyRes, true);
25
22
  return res;
26
23
  }, {});
27
- return (0, object_tools_1._keys)(_result).length ? _result : undefined;
24
+ return _keys(_result).length ? _result : undefined;
28
25
  }];
29
26
  };
30
- exports.tsValidateDynamicObject = tsValidateDynamicObject;
31
- const tsValidateUnion = (validators, mandatory = true) => {
32
- return [(0, validator_core_1.tsValidateExists)(mandatory),
27
+ export const tsValidateUnion = (validators, mandatory = true) => {
28
+ return [tsValidateExists(mandatory),
33
29
  (input) => {
34
30
  const results = [];
35
31
  for (const validator of validators) {
36
- const _res = (0, validator_core_1.tsValidateResult)(input, validator);
32
+ const _res = tsValidateResult(input, validator);
37
33
  if (!_res)
38
34
  return;
39
35
  results.push(_res);
40
36
  }
41
- return (0, array_tools_1.filterInstances)(results).length !== 0 ? ['Input does not match any of the possible types',
37
+ return filterInstances(results).length !== 0 ? ['Input does not match any of the possible types',
42
38
  results] : undefined;
43
39
  }];
44
40
  };
45
- exports.tsValidateUnion = tsValidateUnion;
46
- const tsValidateCustom = (processor, mandatory = true) => {
47
- return [(0, validator_core_1.tsValidateExists)(mandatory), processor];
41
+ export const tsValidateCustom = (processor, mandatory = true) => {
42
+ return [tsValidateExists(mandatory), processor];
48
43
  };
49
- exports.tsValidateCustom = tsValidateCustom;
44
+ // eslint-disable-next-line @typescript-eslint/no-unused-vars
50
45
  const typeFunc = (type) => typeof type;
51
- const tsValidateUnionV3 = (validatorObject, mandatory = true) => {
52
- return [(0, validator_core_1.tsValidateExists)(mandatory),
46
+ export const tsValidateUnionV3 = (validatorObject, mandatory = true) => {
47
+ return [tsValidateExists(mandatory),
53
48
  (input) => {
54
49
  const _type = typeof input;
55
- return (0, object_tools_1._keys)(validatorObject)
56
- .includes(_type) ? (0, validator_core_1.tsValidateResult)(input, validatorObject[_type]) : 'Input does not match any of the possible types';
50
+ return _keys(validatorObject)
51
+ .includes(_type) ? tsValidateResult(input, validatorObject[_type]) : 'Input does not match any of the possible types';
57
52
  }];
58
53
  };
59
- exports.tsValidateUnionV3 = tsValidateUnionV3;
60
- const tsValidateArray = (validator, mandatory = true, minimumLength = 0) => {
61
- return [(0, validator_core_1.tsValidateExists)(mandatory),
62
- ...(0, array_tools_1.asArray)(validator).map(validator => {
54
+ export const tsValidateArray = (validator, mandatory = true, minimumLength = 0, strict = true) => {
55
+ return [tsValidateExists(mandatory),
56
+ ...asArray(validator).map(validator => {
63
57
  return (input) => {
64
58
  const results = [];
65
59
  const _input = input;
66
60
  if (_input.length < minimumLength)
67
61
  return 'Array length smaller than minimum defined length';
68
62
  for (let i = 0; i < _input.length; i++) {
69
- results[i] = (0, validator_core_1.tsValidateResult)(_input[i], validator, undefined, input);
63
+ results[i] = tsValidateResult(_input[i], validator, undefined, strict, input);
70
64
  }
71
- return (0, array_tools_1.filterInstances)(results).length !== 0 ? results : undefined;
65
+ return filterInstances(results).length !== 0 ? results : undefined;
72
66
  };
73
67
  })];
74
68
  };
75
- exports.tsValidateArray = tsValidateArray;
76
- const tsValidateString = (length = -1, mandatory = true) => {
77
- return [(0, validator_core_1.tsValidateExists)(mandatory),
69
+ export const tsValidateString = (length = -1, mandatory = true) => {
70
+ return [tsValidateExists(mandatory),
78
71
  (input) => {
79
72
  // noinspection SuspiciousTypeOfGuard
80
73
  if (typeof input !== 'string')
@@ -90,9 +83,10 @@ const tsValidateString = (length = -1, mandatory = true) => {
90
83
  return;
91
84
  }];
92
85
  };
93
- exports.tsValidateString = tsValidateString;
94
- const tsValidateStringMinLength = (length, mandatory = true) => {
95
- return [(0, validator_core_1.tsValidateExists)(mandatory),
86
+ export const tsValidateAnyString = tsValidateString();
87
+ export const tsValidateOptionalAnyString = tsValidateString(-1, false);
88
+ export const tsValidateStringMinLength = (length, mandatory = true) => {
89
+ return [tsValidateExists(mandatory),
96
90
  (input) => {
97
91
  // noinspection SuspiciousTypeOfGuard
98
92
  if (typeof input !== 'string')
@@ -102,9 +96,8 @@ const tsValidateStringMinLength = (length, mandatory = true) => {
102
96
  return `input has less than ${length} chars`;
103
97
  }];
104
98
  };
105
- exports.tsValidateStringMinLength = tsValidateStringMinLength;
106
- const tsValidateNumber = (mandatory = true) => {
107
- return [(0, validator_core_1.tsValidateExists)(mandatory),
99
+ export const tsValidateNumber = (mandatory = true) => {
100
+ return [tsValidateExists(mandatory),
108
101
  (input) => {
109
102
  // noinspection SuspiciousTypeOfGuard
110
103
  if (typeof input === 'number')
@@ -112,19 +105,19 @@ const tsValidateNumber = (mandatory = true) => {
112
105
  return `Input is not a number! \nvalue: ${input}\ntype: ${typeof input}`;
113
106
  }];
114
107
  };
115
- exports.tsValidateNumber = tsValidateNumber;
116
- const tsValidateEnum = (enumType, mandatory = true) => {
117
- return [(0, validator_core_1.tsValidateExists)(mandatory),
108
+ export const tsValidateAnyNumber = tsValidateNumber();
109
+ export const tsValidateOptionalAnyNumber = tsValidateNumber(false);
110
+ export const tsValidateEnum = (enumType, mandatory = true) => {
111
+ return [tsValidateExists(mandatory),
118
112
  (input) => {
119
113
  // @ts-ignore
120
- if ((0, tools_1.exists)(enumType[input]))
114
+ if (exists(enumType[input]))
121
115
  return;
122
- return `Input is not a valid enum value in ${(0, tools_1.__stringify)(enumType)}`;
116
+ return `Input is not a valid enum value in ${__stringify(enumType)}`;
123
117
  }];
124
118
  };
125
- exports.tsValidateEnum = tsValidateEnum;
126
- const tsValidateBoolean = (mandatory = true) => {
127
- return [(0, validator_core_1.tsValidateExists)(mandatory),
119
+ export const tsValidateBoolean = (mandatory = true) => {
120
+ return [tsValidateExists(mandatory),
128
121
  (input) => {
129
122
  // noinspection SuspiciousTypeOfGuard
130
123
  if (typeof input === 'boolean')
@@ -132,27 +125,24 @@ const tsValidateBoolean = (mandatory = true) => {
132
125
  return `Input is not a boolean! \nvalue: ${input}\ntype: ${typeof input}`;
133
126
  }];
134
127
  };
135
- exports.tsValidateBoolean = tsValidateBoolean;
136
- const tsValidateValue = (values, mandatory = true) => {
137
- return [(0, validator_core_1.tsValidateExists)(mandatory),
128
+ export const tsValidateValue = (values, mandatory = true) => {
129
+ return [tsValidateExists(mandatory),
138
130
  (input) => {
139
131
  if (values.includes(input))
140
132
  return;
141
- return `Input is not valid:\n input: ${input && (0, tools_1.__stringify)(input) || input}\n options: ${(0, tools_1.__stringify)(values)}\n`;
133
+ return `Input is not valid:\n input: ${input && __stringify(input) || input}\n options: ${__stringify(values)}\n`;
142
134
  }];
143
135
  };
144
- exports.tsValidateValue = tsValidateValue;
145
- const tsValidateIsInRange = (ranges, mandatory = true) => {
146
- return [(0, validator_core_1.tsValidateExists)(mandatory),
136
+ export const tsValidateIsInRange = (ranges, mandatory = true) => {
137
+ return [tsValidateExists(mandatory),
147
138
  (input) => {
148
139
  if (ranges.some((range) => range[0] <= input && input <= range[1]))
149
140
  return;
150
- return `Input is not valid: ${input}. It should fit one of the expected range: ${(0, tools_1.__stringify)(ranges)}`;
141
+ return `Input is not valid: ${input}. It should fit one of the expected range: ${__stringify(ranges)}`;
151
142
  }];
152
143
  };
153
- exports.tsValidateIsInRange = tsValidateIsInRange;
154
- const tsValidateRange = (mandatory = true) => {
155
- return [(0, validator_core_1.tsValidateExists)(mandatory),
144
+ export const tsValidateRange = (mandatory = true) => {
145
+ return [tsValidateExists(mandatory),
156
146
  (input) => {
157
147
  if (!input)
158
148
  return 'Missing range';
@@ -164,9 +154,8 @@ const tsValidateRange = (mandatory = true) => {
164
154
  return;
165
155
  }];
166
156
  };
167
- exports.tsValidateRange = tsValidateRange;
168
- const tsValidateRegexp = (regexp, mandatory = true) => {
169
- return [(0, validator_core_1.tsValidateExists)(mandatory),
157
+ export const tsValidateRegexp = (regexp, mandatory = true) => {
158
+ return [tsValidateExists(mandatory),
170
159
  (input) => {
171
160
  // console.log({input, regexp});
172
161
  if (regexp.test(input))
@@ -174,28 +163,23 @@ const tsValidateRegexp = (regexp, mandatory = true) => {
174
163
  return `Input does not match regexp:\n input: ${input}\n regexp: ${regexp}\n`;
175
164
  }];
176
165
  };
177
- exports.tsValidateRegexp = tsValidateRegexp;
178
- const tsValidateTimestamp = (interval, mandatory = true) => {
179
- return [(0, validator_core_1.tsValidateExists)(mandatory),
166
+ export const tsValidateTimestamp = (interval, mandatory = true) => {
167
+ return [tsValidateExists(mandatory),
180
168
  (input) => {
181
- const now = (0, date_time_tools_1.currentTimeMillis)();
169
+ const now = currentTimeMillis();
182
170
  const minTimestamp = now - (interval || now);
183
171
  if (minTimestamp <= input && input <= now)
184
172
  return;
185
173
  return `Input is not valid:\n input: ${input}\n Expected Interval: ${minTimestamp} - ${now}\n`;
186
174
  }];
187
175
  };
188
- exports.tsValidateTimestamp = tsValidateTimestamp;
189
- const tsValidateAudit = (range) => {
176
+ export const tsValidateAudit = (range = { min: 0, max: Number.MAX_VALUE }) => {
190
177
  return (audit) => {
191
- var _a;
192
- return (0, validator_core_1.tsValidateResult)((_a = audit === null || audit === void 0 ? void 0 : audit.auditAt) === null || _a === void 0 ? void 0 : _a.timestamp, (0, exports.tsValidateIsInRange)([[0,
193
- Number.MAX_VALUE]]));
178
+ return tsValidateResult(audit?.auditAt?.timestamp, tsValidateIsInRange([[range.min, range.max]]));
194
179
  };
195
180
  };
196
- exports.tsValidateAudit = tsValidateAudit;
197
- const tsValidateTimeRange = (mandatory = true) => {
198
- return [(0, validator_core_1.tsValidateExists)(mandatory), (instance) => {
181
+ export const tsValidateTimeRange = (mandatory = true) => {
182
+ return [tsValidateExists(mandatory), (instance) => {
199
183
  if (!instance)
200
184
  return 'No instance was provided to validation';
201
185
  if (!instance.length || instance.every(value => value === undefined))
@@ -206,53 +190,48 @@ const tsValidateTimeRange = (mandatory = true) => {
206
190
  return;
207
191
  if (!instance[1] && typeof instance[0] === 'number')
208
192
  return;
209
- return (0, validator_core_1.tsValidateResult)(instance, (0, exports.tsValidateRange)());
193
+ return tsValidateResult(instance, tsValidateRange());
210
194
  }];
211
195
  };
212
- exports.tsValidateTimeRange = tsValidateTimeRange;
213
- const tsValidateNonMandatoryObject = (validator) => {
214
- return [(0, validator_core_1.tsValidateExists)(false),
215
- (input) => (0, validator_core_1.tsValidateResult)(input, validator)];
196
+ export const tsValidateNonMandatoryObject = (validator) => {
197
+ return [tsValidateExists(false),
198
+ (input) => tsValidateResult(input, validator)];
216
199
  };
217
- exports.tsValidateNonMandatoryObject = tsValidateNonMandatoryObject;
218
- exports.tsValidateOptionalObject = exports.tsValidateNonMandatoryObject;
219
- const tsValidator_valueByKey = (validatorObject, prop = 'type') => {
220
- return (0, exports.tsValidateCustom)((value, parentObject) => {
221
- return (0, validator_core_1.tsValidateResult)(value, validatorObject[parentObject[prop]]);
200
+ export const tsValidateOptionalObject = tsValidateNonMandatoryObject;
201
+ export const tsValidator_valueByKey = (validatorObject, prop = 'type') => {
202
+ return tsValidateCustom((value, parentObject) => {
203
+ return tsValidateResult(value, validatorObject[parentObject[prop]]);
222
204
  });
223
205
  };
224
- exports.tsValidator_valueByKey = tsValidator_valueByKey;
225
- const tsValidator_ArrayOfObjectsByKey = (key, validatorMap) => {
226
- return (0, exports.tsValidateArray)((0, exports.tsValidateCustom)((value) => {
206
+ export const tsValidator_ArrayOfObjectsByKey = (key, validatorMap) => {
207
+ return tsValidateArray(tsValidateCustom((value) => {
227
208
  const _value = value;
228
209
  const validator = validatorMap[_value[key]];
229
210
  if (!validator)
230
- throw new exceptions_1.BadImplementationException(`No validator defined for key ${key} with value ${_value[key]}`);
231
- return (0, validator_core_1.tsValidateResult)(_value, validator);
211
+ throw new BadImplementationException(`No validator defined for key ${key} with value ${_value[key]}`);
212
+ return tsValidateResult(_value, validator);
232
213
  }));
233
214
  };
234
- exports.tsValidator_ArrayOfObjectsByKey = tsValidator_ArrayOfObjectsByKey;
235
- const tsValidator_stringOrNumber = (mandatory = true) => {
236
- return (0, exports.tsValidateCustom)((input) => {
215
+ export const tsValidator_stringOrNumber = (mandatory = true) => {
216
+ return tsValidateCustom((input) => {
237
217
  switch (typeof input) {
238
218
  case 'string':
239
- return (0, validator_core_1.tsValidateResult)(input, (0, exports.tsValidateString)());
219
+ return tsValidateResult(input, tsValidateString());
240
220
  case 'number':
241
- return (0, validator_core_1.tsValidateResult)(input, (0, exports.tsValidateNumber)());
221
+ return tsValidateResult(input, tsValidateNumber());
242
222
  }
243
223
  return 'Input is not string or number.';
244
224
  }, mandatory);
245
225
  };
246
- exports.tsValidator_stringOrNumber = tsValidator_stringOrNumber;
247
- const tsValidateIpAddress = (mandatory = true) => {
248
- return [(0, validator_core_1.tsValidateExists)(mandatory), (input) => {
226
+ export const tsValidateIpAddress = (mandatory = true) => {
227
+ return [tsValidateExists(mandatory), (input) => {
249
228
  if (!input && mandatory)
250
229
  return 'no input provided for validation of mandatory prop';
251
- if ((0, validator_core_1.tsValidateResult)(input, (0, exports.tsValidateRegexp)(/(([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\.){3}([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])/)))
230
+ if (tsValidateResult(input, tsValidateRegexp(/(([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\.){3}([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])/)))
252
231
  return;
253
- if ((0, validator_core_1.tsValidateResult)(input, (0, exports.tsValidateRegexp)(/((([0-9a-fA-F]){1,4})\:){7}([0-9a-fA-F]){1,4}/)))
232
+ if (tsValidateResult(input, tsValidateRegexp(/((([0-9a-fA-F]){1,4})\:){7}([0-9a-fA-F]){1,4}/)))
254
233
  return;
255
234
  return `Invalid input ${input}, not an ip address`;
256
235
  }];
257
236
  };
258
- exports.tsValidateIpAddress = tsValidateIpAddress;
237
+ //# sourceMappingURL=type-validators.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"type-validators.js","sourceRoot":"/Users/tacb0ss/dev/nu-art/beamz/_thunderstorm/ts-common/src/main/","sources":["validator/type-validators.ts"],"names":[],"mappings":"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"}
@@ -1,5 +1,5 @@
1
- import { TS_Object } from '../utils/types';
2
- import { CustomException } from '../core/exceptions/exceptions';
1
+ import { TS_Object } from '../utils/types.js';
2
+ import { CustomException } from '../core/exceptions/exceptions.js';
3
3
  /**
4
4
  * Should be like the following but errors in resolving...
5
5
  *
@@ -26,5 +26,5 @@ export declare class ValidationException<T> extends CustomException {
26
26
  }
27
27
  export declare const tsValidateExists: (mandatory?: boolean) => ValidatorImpl<any>;
28
28
  export declare const tsValidate: <T>(instance: T | undefined, _validator: ValidatorTypeResolver<T>, strict?: boolean) => InvalidResult<T> | undefined;
29
- export declare const tsValidateResult: <T>(instance: T | undefined, _validator: ValidatorTypeResolver<T>, key?: keyof T, parentInstance?: any) => InvalidResult<T> | undefined;
30
- export declare const tsValidateObject: <T extends object>(__validator: TypeValidator<T>, instance: T, path?: string) => InvalidResultObject<T> | undefined;
29
+ export declare const tsValidateResult: <T>(instance: T | undefined, _validator: ValidatorTypeResolver<T>, key?: keyof T, strict?: boolean, parentInstance?: any) => InvalidResult<T> | undefined;
30
+ export declare const tsValidateObject: <T extends object>(__validator: TypeValidator<T>, instance: T, path?: string, strict?: boolean) => InvalidResultObject<T> | undefined;