tnp-core 21.0.134 → 21.0.136

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 (177) hide show
  1. package/VERIFIED-BUILD-DATA.jsonc +3 -3
  2. package/bin/start.js +1 -1
  3. package/browser/fesm2022/tnp-core-browser.mjs +5236 -5121
  4. package/browser/fesm2022/tnp-core-browser.mjs.map +1 -1
  5. package/browser/package.json +1 -1
  6. package/browser/types/tnp-core-browser.d.ts +245 -194
  7. package/browser-prod/fesm2022/tnp-core-browser-prod.mjs +2832 -2716
  8. package/browser-prod/fesm2022/tnp-core-browser-prod.mjs.map +1 -1
  9. package/browser-prod/package.json +1 -1
  10. package/browser-prod/types/tnp-core-browser-prod.d.ts +206 -157
  11. package/browser-prod.split-namespaces.json +134 -112
  12. package/cli.backend.js +2 -2
  13. package/lib/build-info._auto-generated_.d.ts +1 -1
  14. package/lib/build-info._auto-generated_.js +1 -1
  15. package/lib/config.js +6 -2
  16. package/lib/config.js.map +1 -1
  17. package/lib/core-models.d.ts +3 -0
  18. package/lib/core-models.js +0 -1
  19. package/lib/core-models.js.map +1 -1
  20. package/lib/helpers.js +7 -6
  21. package/lib/helpers.js.map +1 -1
  22. package/lib/index.d.ts +8 -0
  23. package/lib/index.js +8 -0
  24. package/lib/index.js.map +1 -1
  25. package/lib/node-chalk-mock.js +2 -2
  26. package/lib/node-path-mock.js +2 -2
  27. package/lib/package.json +1 -1
  28. package/lib/utils-binary.d.ts +68 -0
  29. package/lib/utils-binary.js +337 -0
  30. package/lib/utils-binary.js.map +1 -0
  31. package/lib/utils-cli.d.ts +41 -0
  32. package/lib/utils-cli.js +117 -0
  33. package/lib/utils-cli.js.map +1 -0
  34. package/lib/utils-dot-file.d.ts +17 -0
  35. package/lib/utils-dot-file.js +249 -0
  36. package/lib/utils-dot-file.js.map +1 -0
  37. package/lib/utils-exec-proc.js +2 -2
  38. package/lib/utils-exec-proc.js.map +1 -1
  39. package/lib/utils-i18n.d.ts +38 -0
  40. package/lib/utils-i18n.js +51 -0
  41. package/lib/utils-i18n.js.map +1 -0
  42. package/lib/utils-json.d.ts +22 -0
  43. package/lib/utils-json.js +158 -0
  44. package/lib/utils-json.js.map +1 -0
  45. package/lib/utils-os.d.ts +2 -0
  46. package/lib/utils-os.js +85 -44
  47. package/lib/utils-os.js.map +1 -1
  48. package/lib/utils-string-regex.d.ts +6 -0
  49. package/lib/utils-string-regex.js +29 -0
  50. package/lib/utils-string-regex.js.map +1 -0
  51. package/lib/utils-sudo.d.ts +32 -0
  52. package/lib/utils-sudo.js +131 -0
  53. package/lib/utils-sudo.js.map +1 -0
  54. package/lib/utils-time.d.ts +16 -0
  55. package/lib/utils-time.js +99 -0
  56. package/lib/utils-time.js.map +1 -0
  57. package/lib/utils.d.ts +0 -202
  58. package/lib/utils.js +5 -1081
  59. package/lib/utils.js.map +1 -1
  60. package/lib-esm/cli.backend.d.ts +1 -1
  61. package/lib-esm/cli.backend.js +1 -1
  62. package/lib-esm/lib/build-info._auto-generated_.d.ts +1 -1
  63. package/lib-esm/lib/build-info._auto-generated_.js +1 -1
  64. package/lib-esm/lib/config.js +6 -2
  65. package/lib-esm/lib/config.js.map +1 -1
  66. package/lib-esm/lib/core-models.d.ts +3 -0
  67. package/lib-esm/lib/core-models.js +0 -1
  68. package/lib-esm/lib/core-models.js.map +1 -1
  69. package/lib-esm/lib/helpers.js +3 -2
  70. package/lib-esm/lib/helpers.js.map +1 -1
  71. package/lib-esm/lib/index.d.ts +8 -0
  72. package/lib-esm/lib/index.js +8 -0
  73. package/lib-esm/lib/index.js.map +1 -1
  74. package/lib-esm/lib/node-chalk-mock.d.ts +1 -1
  75. package/lib-esm/lib/node-chalk-mock.js +1 -1
  76. package/lib-esm/lib/node-path-mock.d.ts +1 -1
  77. package/lib-esm/lib/node-path-mock.js +1 -1
  78. package/lib-esm/lib/utils-binary.d.ts +60 -0
  79. package/lib-esm/lib/utils-binary.js +334 -0
  80. package/lib-esm/lib/utils-binary.js.map +1 -0
  81. package/lib-esm/lib/utils-cli.d.ts +41 -0
  82. package/lib-esm/lib/utils-cli.js +114 -0
  83. package/lib-esm/lib/utils-cli.js.map +1 -0
  84. package/lib-esm/lib/utils-dot-file.d.ts +17 -0
  85. package/lib-esm/lib/utils-dot-file.js +246 -0
  86. package/lib-esm/lib/utils-dot-file.js.map +1 -0
  87. package/lib-esm/lib/utils-exec-proc.js +1 -1
  88. package/lib-esm/lib/utils-exec-proc.js.map +1 -1
  89. package/lib-esm/lib/utils-i18n.d.ts +38 -0
  90. package/lib-esm/lib/utils-i18n.js +48 -0
  91. package/lib-esm/lib/utils-i18n.js.map +1 -0
  92. package/lib-esm/lib/utils-json.d.ts +22 -0
  93. package/lib-esm/lib/utils-json.js +155 -0
  94. package/lib-esm/lib/utils-json.js.map +1 -0
  95. package/lib-esm/lib/utils-os.d.ts +2 -0
  96. package/lib-esm/lib/utils-os.js +86 -45
  97. package/lib-esm/lib/utils-os.js.map +1 -1
  98. package/lib-esm/lib/utils-string-regex.d.ts +6 -0
  99. package/lib-esm/lib/utils-string-regex.js +26 -0
  100. package/lib-esm/lib/utils-string-regex.js.map +1 -0
  101. package/lib-esm/lib/utils-sudo.d.ts +32 -0
  102. package/lib-esm/lib/utils-sudo.js +128 -0
  103. package/lib-esm/lib/utils-sudo.js.map +1 -0
  104. package/lib-esm/lib/utils-time.d.ts +16 -0
  105. package/lib-esm/lib/utils-time.js +96 -0
  106. package/lib-esm/lib/utils-time.js.map +1 -0
  107. package/lib-esm/lib/utils.d.ts +0 -194
  108. package/lib-esm/lib/utils.js +3 -1079
  109. package/lib-esm/lib/utils.js.map +1 -1
  110. package/lib-prod/build-info._auto-generated_.d.ts +1 -1
  111. package/lib-prod/build-info._auto-generated_.js +1 -1
  112. package/lib-prod/config.js +6 -2
  113. package/lib-prod/config.js.map +1 -1
  114. package/lib-prod/core-cli.js.map +1 -1
  115. package/lib-prod/core-models.d.ts +3 -0
  116. package/lib-prod/core-models.js +0 -1
  117. package/lib-prod/core-models.js.map +1 -1
  118. package/lib-prod/global-task-manager.js.map +1 -1
  119. package/lib-prod/helpers.js +3 -2
  120. package/lib-prod/helpers.js.map +1 -1
  121. package/lib-prod/index.d.ts +8 -0
  122. package/lib-prod/index.js +8 -0
  123. package/lib-prod/index.js.map +1 -1
  124. package/lib-prod/node-chalk-mock.d.ts +1 -1
  125. package/lib-prod/node-chalk-mock.js +1 -1
  126. package/lib-prod/node-path-mock.d.ts +1 -1
  127. package/lib-prod/node-path-mock.js +1 -1
  128. package/lib-prod/package.json +1 -1
  129. package/lib-prod/start-cli.js.map +1 -1
  130. package/lib-prod/utils-binary.d.ts +58 -0
  131. package/lib-prod/utils-binary.js +311 -0
  132. package/lib-prod/utils-binary.js.map +1 -0
  133. package/lib-prod/utils-cli.d.ts +19 -0
  134. package/lib-prod/utils-cli.js +112 -0
  135. package/lib-prod/utils-cli.js.map +1 -0
  136. package/lib-prod/utils-dot-file.d.ts +15 -0
  137. package/lib-prod/utils-dot-file.js +245 -0
  138. package/lib-prod/utils-dot-file.js.map +1 -0
  139. package/lib-prod/utils-exec-proc.js +1 -1
  140. package/lib-prod/utils-exec-proc.js.map +1 -1
  141. package/lib-prod/utils-files-folders.js.map +1 -1
  142. package/lib-prod/utils-i18n.d.ts +36 -0
  143. package/lib-prod/utils-i18n.js +46 -0
  144. package/lib-prod/utils-i18n.js.map +1 -0
  145. package/lib-prod/utils-json.d.ts +20 -0
  146. package/lib-prod/utils-json.js +153 -0
  147. package/lib-prod/utils-json.js.map +1 -0
  148. package/lib-prod/utils-network.js.map +1 -1
  149. package/lib-prod/utils-os.d.ts +2 -0
  150. package/lib-prod/utils-os.js +87 -46
  151. package/lib-prod/utils-os.js.map +1 -1
  152. package/lib-prod/utils-process-logger.js.map +1 -1
  153. package/lib-prod/utils-process.js.map +1 -1
  154. package/lib-prod/utils-string-regex.d.ts +2 -0
  155. package/lib-prod/utils-string-regex.js +24 -0
  156. package/lib-prod/utils-string-regex.js.map +1 -0
  157. package/lib-prod/utils-sudo.d.ts +30 -0
  158. package/lib-prod/utils-sudo.js +126 -0
  159. package/lib-prod/utils-sudo.js.map +1 -0
  160. package/lib-prod/utils-terminal.js.map +1 -1
  161. package/lib-prod/utils-time.d.ts +14 -0
  162. package/lib-prod/utils-time.js +95 -0
  163. package/lib-prod/utils-time.js.map +1 -0
  164. package/lib-prod/utils.d.ts +0 -158
  165. package/lib-prod/utils.js +5 -1045
  166. package/lib-prod/utils.js.map +1 -1
  167. package/lib-prod.split-namespaces.json +144 -124
  168. package/package.json +1 -1
  169. package/websql/fesm2022/tnp-core-websql.mjs +5237 -5122
  170. package/websql/fesm2022/tnp-core-websql.mjs.map +1 -1
  171. package/websql/package.json +1 -1
  172. package/websql/types/tnp-core-websql.d.ts +245 -194
  173. package/websql-prod/fesm2022/tnp-core-websql-prod.mjs +2839 -2723
  174. package/websql-prod/fesm2022/tnp-core-websql-prod.mjs.map +1 -1
  175. package/websql-prod/package.json +1 -1
  176. package/websql-prod/types/tnp-core-websql-prod.d.ts +206 -157
  177. package/websql-prod.split-namespaces.json +134 -112
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tnp-core/browser-prod",
3
- "version": "21.0.134",
3
+ "version": "21.0.136",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^21.0.0",
6
6
  "@angular/core": "^21.0.0"
@@ -1089,6 +1089,9 @@ declare const CoreModels__NS__pathToChildren = "path-to-children";
1089
1089
  */
1090
1090
  declare const CoreModels__NS__parentLocation = "parent-location";
1091
1091
  declare const CoreModels__NS__hasExitCleaningFunction = "has-exit-cleaning-function-for";
1092
+ type CoreModels__NS__DeepPartial<T> = {
1093
+ [K in keyof T]?: T[K] extends object ? CoreModels__NS__DeepPartial<T[K]> : T[K];
1094
+ };
1092
1095
 
1093
1096
  declare const CoreConfig: {
1094
1097
  message: {
@@ -1141,83 +1144,12 @@ declare const Utils__NS__requireUncached: (module: string) => any;
1141
1144
  * all non word / repeated characters
1142
1145
  */
1143
1146
  declare const Utils__NS__camelize: (str?: string) => string;
1144
- declare enum Utils__NS__DbBinaryFormatEnum {
1145
- Blob = "Blob",
1146
- File = "File",
1147
- string = "string"
1148
- }
1149
- type Utils__NS__DbBinaryFormatForBrowser = Blob | File | string;
1150
- /**
1151
- * Binary format that can be stored in database
1152
- *
1153
- * for nodejs => Buffer
1154
- * for sql.js => string (shoulb be blob - but not supported)
1155
- *
1156
- */
1157
- type Utils__NS__DbBinaryFormat = Utils__NS__DbBinaryFormatForBrowser;
1158
- /**
1159
- * This is for BROWSER ONLY
1160
- *
1161
- * @param buffer
1162
- * @param contentType
1163
- * @returns
1164
- */
1165
- declare function Utils__NS__binary__NS__arrayBufferToBlob(buffer: ArrayBuffer, contentType: CoreModels__NS__ContentType): Promise<Blob>;
1166
- /**
1167
- * This is for BROWSER ONLY
1168
- * @param blob
1169
- * @returns
1170
- */
1171
- declare function Utils__NS__binary__NS__blobToArrayBuffer(blob: Blob): Promise<ArrayBuffer>;
1172
- /**
1173
- * it is revers to base64toBlob
1174
- * @param blob
1175
- * @returns
1176
- */
1177
- declare function Utils__NS__binary__NS__blobToBase64(blob: Blob): Promise<string>;
1178
- /**
1179
- * it is revers to blobToBase64()
1180
- * @param base64Data
1181
- * @returns
1182
- */
1183
- declare function Utils__NS__binary__NS__base64toBlob(base64Data: string, contentTypeOverride?: CoreModels__NS__ContentType): Promise<Blob>;
1184
- declare function Utils__NS__binary__NS__base64toDbBinaryFormat(text: string): Promise<Utils__NS__DbBinaryFormat>;
1185
- declare function Utils__NS__binary__NS__dbBinaryFormatToBase64(binaryFormat: Utils__NS__DbBinaryFormat): Promise<string>;
1186
- declare function Utils__NS__binary__NS__textToDbBinaryFormat(text: string): Promise<Utils__NS__DbBinaryFormat>;
1187
- declare function Utils__NS__binary__NS__dbBinaryFormatToText(binaryFormat: Utils__NS__DbBinaryFormat): Promise<string>;
1188
- declare function Utils__NS__binary__NS__fileToBlob(file: File): Promise<Blob>;
1189
- declare function Utils__NS__binary__NS__blobToFile(blob: Blob, nameForFile?: string): Promise<File>;
1190
- declare function Utils__NS__binary__NS__textToBlob(text: string, type?: CoreModels__NS__ContentType): Promise<Blob>;
1191
- declare function Utils__NS__binary__NS__blobToText(blob: Blob): Promise<string>;
1192
- declare function Utils__NS__binary__NS__textToFile(text: string, fileRelativePathOrName: string): Promise<File>;
1193
- declare function Utils__NS__binary__NS__fileToText(file: File): Promise<string>;
1194
- declare function Utils__NS__binary__NS__jsonToBlob(jsonObj: object): Promise<Blob>;
1195
- /**
1196
- * TODO NOT TESTED
1197
- */
1198
- declare function Utils__NS__binary__NS__blobToJson(blob: Blob): Promise<string>;
1199
- declare function Utils__NS__binary__NS__getBlobFrom(url: string): Promise<Blob>;
1200
1147
  /**
1201
1148
  *
1202
1149
  * @param pixelsCss pixels ex. 100px
1203
1150
  * @returns
1204
1151
  */
1205
1152
  declare function Utils__NS__css__NS__numValue(pixelsCss: string | number): number;
1206
- declare const UtilsTime__NS__formatDuration: (milliseconds: number) => string;
1207
- declare const UtilsTime__NS__wait: (second: number) => Promise<void>;
1208
- declare const UtilsTime__NS__waitMilliseconds: (milliseconds: number) => Promise<void>;
1209
- interface UtilsTime__NS__MeasureOptions {
1210
- hideLogs?: boolean;
1211
- }
1212
- interface UtilsTime__NS__ExecutionTimeResult {
1213
- readonly milliseconds: number;
1214
- readonly seconds: number;
1215
- readonly minutes: number;
1216
- readonly human: string;
1217
- }
1218
- declare const UtilsTime__NS__mesureExecutionTime: <T>(description: string, functionToExecute: () => Promise<T>, options?: UtilsTime__NS__MeasureOptions) => Promise<UtilsTime__NS__ExecutionTimeResult>;
1219
- declare const UtilsTime__NS__mesureExecutionTimeSync: <T>(description: string, functionToExecute: () => T, options?: UtilsTime__NS__MeasureOptions) => UtilsTime__NS__ExecutionTimeResult;
1220
- declare const UtilsStringRegex__NS__containsNonAscii: (pathStringOrPathParts: string) => boolean;
1221
1153
  /**
1222
1154
  * TODO @LAST @IN_PROGRESS
1223
1155
  * - utils for messages
@@ -1225,36 +1157,6 @@ declare const UtilsStringRegex__NS__containsNonAscii: (pathStringOrPathParts: st
1225
1157
  * - should be ready for everything async refactor
1226
1158
  */
1227
1159
  declare const UtilsMessages__NS__compilationWrapper: (fn: () => any, taskName?: string, executionType?: "Compilation of" | "Code execution of" | "Event:") => Promise<void>;
1228
- /**
1229
- * All possible sudo states on Windows 11 (24H2+)
1230
- */
1231
- declare enum SudoStatus {
1232
- NotInstalled = "NotInstalled",
1233
- Disabled = "Disabled",
1234
- Enabled_ForceNewWindow = "Enabled_ForceNewWindow",// Enabled = 2
1235
- Enabled_Inline = "Enabled_Inline",// Enabled = 3 ← current default
1236
- Unknown = "Unknown"
1237
- }
1238
- /**
1239
- * @returns true if current process is elevated (admin or sudo root), false otherwise
1240
- */
1241
- declare const UtilsSudo__NS__isCurrentProcessElevated: () => Promise<boolean>;
1242
- /**
1243
- * Main function – returns detailed sudo status
1244
- */
1245
- declare function UtilsSudo__NS__getStatus(): Promise<{
1246
- status: SudoStatus;
1247
- label: string;
1248
- isAvailable: boolean;
1249
- isInline: boolean;
1250
- }>;
1251
- /**
1252
- * check if sudo is available and in proper mode
1253
- */
1254
- declare const UtilsSudo__NS__isInProperModeForTaon: ({ displayErrorMessage, }: {
1255
- displayErrorMessage?: boolean;
1256
- }) => Promise<boolean>;
1257
- declare const UtilsString__NS__kebabCaseNoSplitNumbers: (input: string) => string;
1258
1160
  /**
1259
1161
  * Taon migration utilities
1260
1162
  */
@@ -1262,26 +1164,6 @@ declare const UtilsMigrations__NS__getTimestampFromClassName: (className: string
1262
1164
  declare const UtilsMigrations__NS__getFormattedTimestampFromClassName: (className: string) => string | undefined;
1263
1165
  declare const UtilsMigrations__NS__formatTimestamp: (timestamp: number) => string;
1264
1166
  declare const UtilsMigrations__NS__isValidTimestamp: (value: any) => boolean;
1265
- interface UtilsJson__NS__AttrJsoncProp {
1266
- name: string;
1267
- value?: any;
1268
- }
1269
- /**
1270
- * ! TODO handle packages like zone.js with dot
1271
- * Get attributes from jsonc or json5 file
1272
- * @param jsonDeepPath lodash path to property in json ex. deep.path.to.prop
1273
- * @param fileContent jsonc or json5 - json with comments
1274
- * @returns array of attributes
1275
- */
1276
- declare const UtilsJson__NS__getAtrributiesFromJsonWithComments: (jsonDeepPath: string, // lodash path to property in json ex. deep.path.to.prop
1277
- fileContent: string) => UtilsJson__NS__AttrJsoncProp[];
1278
- declare const UtilsJson__NS__getAttributiesFromComment: (comment: string, attributes?: UtilsJson__NS__AttrJsoncProp[]) => UtilsJson__NS__AttrJsoncProp[];
1279
- /**
1280
- * read json from absolute path
1281
- * @returns json object
1282
- */
1283
- declare const UtilsJson__NS__readJson: (absoluteFilePath: string | string[], defaultValue?: {}, useJson5?: boolean) => any;
1284
- declare const UtilsJson__NS__readJsonWithComments: (absoluteFilePath: string | string[], defaultValue?: any) => any;
1285
1167
  declare const UtilsYaml__NS__yamlToJson: <FORMAT = any>(yamlString: string) => any;
1286
1168
  declare const UtilsYaml__NS__jsonToYaml: (json: any) => string;
1287
1169
  declare const UtilsYaml__NS__readYamlAsJson: <FORMAT = any>(absFilePathToYamlOrYmlFile: string, options?: {
@@ -1322,40 +1204,6 @@ declare const FilePathMetaData__NS__extractData: <T extends Record<string, strin
1322
1204
  keysMap?: Record<keyof T, string | number | boolean | undefined>;
1323
1205
  }) => T;
1324
1206
  declare const FilePathMetaData__NS__getOnlyMetadataString: (filename: string) => string;
1325
- declare const UtilsDotFile__NS__setValueToDotFile: (dotFileAbsPath: string | string[], key: string, value: string | number | boolean) => void;
1326
- declare const UtilsDotFile__NS__setCommentToKeyInDotFile: (dotFileAbsPath: string | string[], key: string, comment: string) => void;
1327
- declare const UtilsDotFile__NS__getValueFromDotFile: (dotFileAbsPath: string | string[], key: string) => string | number | boolean;
1328
- declare const UtilsDotFile__NS__addCommentAtTheBeginningOfDotFile: (dotFileAbsPath: string | string[], comment: string) => void;
1329
- declare const UtilsDotFile__NS__setValuesKeysFromObject: (dotFileAbsPath: string | string[], obj: Record<string, string | number | boolean>, options?: {
1330
- /**
1331
- * if true, it will overwrite existing keys
1332
- */
1333
- setAsNewFile?: boolean;
1334
- }) => void;
1335
- declare const UtilsDotFile__NS__getValuesKeysAsJsonObject: <T = Record<string, string | number | boolean>>(dotFileAbsPath: string | string[]) => T;
1336
- /**
1337
- * @returns key|comment pairs as json object
1338
- */
1339
- declare const UtilsDotFile__NS__getCommentsKeysAsJsonObject: <T = Record<string, string | undefined>>(dotFileAbsPath: string | string[]) => T;
1340
- /**
1341
- * Taon CLI specyfic mehtod for mesuring script execution time:
1342
- * from beginning of script to this moment.
1343
- */
1344
- declare const UtilsCli__NS__getTimeFromThisCLIScriptStart: () => {
1345
- ms: string;
1346
- sec: string;
1347
- min: string;
1348
- };
1349
- declare const UtilsCliClassMethod__NS__decoratorMethod: (methodName: string) => MethodDecorator;
1350
- declare const UtilsCliClassMethod__NS__getFrom: <ARGS_TO_PARSE extends object = any>(ClassPrototypeMethodFnHere: Function, options?: {
1351
- globalMethod?: boolean;
1352
- /**
1353
- * arguments to parse into CLI format
1354
- * Example: { projectName: "myproj", envName: "prod" } => "--projectName=myproj --envName=prod"
1355
- * TODO @LAST add support for DEEP args parsing with lodash-walk-object
1356
- */
1357
- argsToParse?: ARGS_TO_PARSE;
1358
- }) => string;
1359
1207
 
1360
1208
  declare const UtilsEtcHosts__NS__SIMULATE_DOMAIN_TAG = "@simulatedDomainByTaon";
1361
1209
  interface UtilsEtcHosts__NS__EtchostEntry {
@@ -1689,6 +1537,7 @@ declare const UtilsOs__NS__isRunningInVscodeExtension: () => boolean;
1689
1537
  declare const UtilsOs__NS__isRunningInWsl: () => boolean;
1690
1538
  declare const UtilsOs__NS__isRunningInWindowsPowerShell: () => boolean;
1691
1539
  declare const UtilsOs__NS__isRunningInWindowsCmd: () => boolean;
1540
+ declare const UtilsOs__NS__isRunningInWindowsGitBash: () => boolean;
1692
1541
  declare const UtilsOs__NS__isRunningInDocker: () => boolean;
1693
1542
  declare const UtilsOs__NS__isRunningInLinuxGraphicsCapableEnvironment: () => boolean;
1694
1543
  declare const UtilsOs__NS__isRunningInOsWithGraphicsCapableEnvironment: () => boolean;
@@ -1763,6 +1612,7 @@ declare const UtilsOs__NS__sendNotification: (opt: {
1763
1612
  doneCallback?: () => any;
1764
1613
  }) => Promise<void>;
1765
1614
  declare function UtilsOs__NS__safeExitProgramCleanUp(cleanFn: () => Promise<void> | void): any;
1615
+ declare const UtilsOs__NS__whichOrWherePackageLocated: (packageName: string) => string | undefined;
1766
1616
  declare const taonRepoPathUserInUserDirFn: () => string;
1767
1617
  declare const taonBasePathToGlobalDockerTemplatesFn: () => string;
1768
1618
 
@@ -2492,6 +2342,205 @@ interface ProcessStartOptions {
2492
2342
  */
2493
2343
  declare const startAsync: (command: string, cwd: string, options?: Partial<ProcessStartOptions>) => Promise<void>;
2494
2344
 
2345
+ declare const UtilsTime__NS__formatDuration: (milliseconds: number) => string;
2346
+ declare const UtilsTime__NS__wait: (second: number) => Promise<void>;
2347
+ declare const UtilsTime__NS__waitMilliseconds: (milliseconds: number) => Promise<void>;
2348
+ interface UtilsTime__NS__MeasureOptions {
2349
+ hideLogs?: boolean;
2350
+ }
2351
+ interface UtilsTime__NS__ExecutionTimeResult {
2352
+ readonly milliseconds: number;
2353
+ readonly seconds: number;
2354
+ readonly minutes: number;
2355
+ readonly human: string;
2356
+ }
2357
+ declare const UtilsTime__NS__mesureExecutionTime: <T>(description: string, functionToExecute: () => Promise<T>, options?: UtilsTime__NS__MeasureOptions) => Promise<UtilsTime__NS__ExecutionTimeResult>;
2358
+ declare const UtilsTime__NS__mesureExecutionTimeSync: <T>(description: string, functionToExecute: () => T, options?: UtilsTime__NS__MeasureOptions) => UtilsTime__NS__ExecutionTimeResult;
2359
+
2360
+ /**
2361
+ * All possible sudo states on Windows 11 (24H2+)
2362
+ */
2363
+ declare enum SudoStatus {
2364
+ NotInstalled = "NotInstalled",
2365
+ Disabled = "Disabled",
2366
+ Enabled_ForceNewWindow = "Enabled_ForceNewWindow",// Enabled = 2
2367
+ Enabled_Inline = "Enabled_Inline",// Enabled = 3 ← current default
2368
+ Unknown = "Unknown"
2369
+ }
2370
+ /**
2371
+ * @returns true if current process is elevated (admin or sudo root), false otherwise
2372
+ */
2373
+ declare const UtilsSudo__NS__isCurrentProcessElevated: () => Promise<boolean>;
2374
+ /**
2375
+ * Main function – returns detailed sudo status
2376
+ */
2377
+ declare function UtilsSudo__NS__getStatus(): Promise<{
2378
+ status: SudoStatus;
2379
+ label: string;
2380
+ isAvailable: boolean;
2381
+ isInline: boolean;
2382
+ }>;
2383
+ /**
2384
+ * check if sudo is available and in proper mode
2385
+ */
2386
+ declare const UtilsSudo__NS__isInProperModeForTaon: ({ displayErrorMessage, }: {
2387
+ displayErrorMessage?: boolean;
2388
+ }) => Promise<boolean>;
2389
+
2390
+ /**
2391
+ * Taon CLI specyfic mehtod for mesuring script execution time:
2392
+ * from beginning of script to this moment.
2393
+ */
2394
+ declare const UtilsCli__NS__getTimeFromThisCLIScriptStart: () => {
2395
+ ms: string;
2396
+ sec: string;
2397
+ min: string;
2398
+ };
2399
+ declare const UtilsCliClassMethod__NS__decoratorMethod: (methodName: string) => MethodDecorator;
2400
+ declare const UtilsCliClassMethod__NS__getFrom: <ARGS_TO_PARSE extends object = any>(ClassPrototypeMethodFnHere: Function, options?: {
2401
+ globalMethod?: boolean;
2402
+ /**
2403
+ * arguments to parse into CLI format
2404
+ * Example: { projectName: "myproj", envName: "prod" } => "--projectName=myproj --envName=prod"
2405
+ * TODO @LAST add support for DEEP args parsing with lodash-walk-object
2406
+ */
2407
+ argsToParse?: ARGS_TO_PARSE;
2408
+ }) => string;
2409
+
2410
+ interface UtilsJson__NS__AttrJsoncProp {
2411
+ name: string;
2412
+ value?: any;
2413
+ }
2414
+ /**
2415
+ * ! TODO handle packages like zone.js with dot
2416
+ * Get attributes from jsonc or json5 file
2417
+ * @param jsonDeepPath lodash path to property in json ex. deep.path.to.prop
2418
+ * @param fileContent jsonc or json5 - json with comments
2419
+ * @returns array of attributes
2420
+ */
2421
+ declare const UtilsJson__NS__getAtrributiesFromJsonWithComments: (jsonDeepPath: string, // lodash path to property in json ex. deep.path.to.prop
2422
+ fileContent: string) => UtilsJson__NS__AttrJsoncProp[];
2423
+ declare const UtilsJson__NS__getAttributiesFromComment: (comment: string, attributes?: UtilsJson__NS__AttrJsoncProp[]) => UtilsJson__NS__AttrJsoncProp[];
2424
+ /**
2425
+ * read json from absolute path
2426
+ * @returns json object
2427
+ */
2428
+ declare const UtilsJson__NS__readJson: (absoluteFilePath: string | string[], defaultValue?: {}, useJson5?: boolean) => any;
2429
+ declare const UtilsJson__NS__readJsonWithComments: (absoluteFilePath: string | string[], defaultValue?: any) => any;
2430
+
2431
+ declare const UtilsDotFile__NS__setValueToDotFile: (dotFileAbsPath: string | string[], key: string, value: string | number | boolean) => void;
2432
+ declare const UtilsDotFile__NS__setCommentToKeyInDotFile: (dotFileAbsPath: string | string[], key: string, comment: string) => void;
2433
+ declare const UtilsDotFile__NS__getValueFromDotFile: (dotFileAbsPath: string | string[], key: string) => string | number | boolean;
2434
+ declare const UtilsDotFile__NS__addCommentAtTheBeginningOfDotFile: (dotFileAbsPath: string | string[], comment: string) => void;
2435
+ declare const UtilsDotFile__NS__setValuesKeysFromObject: (dotFileAbsPath: string | string[], obj: Record<string, string | number | boolean>, options?: {
2436
+ /**
2437
+ * if true, it will overwrite existing keys
2438
+ */
2439
+ setAsNewFile?: boolean;
2440
+ }) => void;
2441
+ declare const UtilsDotFile__NS__getValuesKeysAsJsonObject: <T = Record<string, string | number | boolean>>(dotFileAbsPath: string | string[]) => T;
2442
+ /**
2443
+ * @returns key|comment pairs as json object
2444
+ */
2445
+ declare const UtilsDotFile__NS__getCommentsKeysAsJsonObject: <T = Record<string, string | undefined>>(dotFileAbsPath: string | string[]) => T;
2446
+
2447
+ declare enum DbBinaryFormatEnum {
2448
+ Blob = "Blob",
2449
+ File = "File",
2450
+ string = "string"
2451
+ }
2452
+ type DbBinaryFormatForBrowser = Blob | File | string;
2453
+ /**
2454
+ * Binary format that can be stored in database
2455
+ *
2456
+ * for nodejs => Buffer
2457
+ * for sql.js => string (shoulb be blob - but not supported)
2458
+ *
2459
+ */
2460
+ type DbBinaryFormat = DbBinaryFormatForBrowser;
2461
+ /**
2462
+ * This is for BROWSER ONLY
2463
+ *
2464
+ * @param buffer
2465
+ * @param contentType
2466
+ * @returns
2467
+ */
2468
+ declare function UtilsBinary__NS__arrayBufferToBlob(buffer: ArrayBuffer, contentType: CoreModels__NS__ContentType): Promise<Blob>;
2469
+ /**
2470
+ * This is for BROWSER ONLY
2471
+ * @param blob
2472
+ * @returns
2473
+ */
2474
+ declare function UtilsBinary__NS__blobToArrayBuffer(blob: Blob): Promise<ArrayBuffer>;
2475
+ /**
2476
+ * it is revers to base64toBlob
2477
+ * @param blob
2478
+ * @returns
2479
+ */
2480
+ declare function UtilsBinary__NS__blobToBase64(blob: Blob): Promise<string>;
2481
+ /**
2482
+ * it is revers to blobToBase64()
2483
+ * @param base64Data
2484
+ * @returns
2485
+ */
2486
+ declare function UtilsBinary__NS__base64toBlob(base64Data: string, contentTypeOverride?: CoreModels__NS__ContentType): Promise<Blob>;
2487
+ declare function UtilsBinary__NS__base64toDbBinaryFormat(text: string): Promise<DbBinaryFormat>;
2488
+ declare function UtilsBinary__NS__dbBinaryFormatToBase64(binaryFormat: DbBinaryFormat): Promise<string>;
2489
+ declare function UtilsBinary__NS__textToDbBinaryFormat(text: string): Promise<DbBinaryFormat>;
2490
+ declare function UtilsBinary__NS__dbBinaryFormatToText(binaryFormat: DbBinaryFormat): Promise<string>;
2491
+ declare function UtilsBinary__NS__fileToBlob(file: File): Promise<Blob>;
2492
+ declare function UtilsBinary__NS__blobToFile(blob: Blob, nameForFile?: string): Promise<File>;
2493
+ declare function UtilsBinary__NS__textToBlob(text: string, type?: CoreModels__NS__ContentType): Promise<Blob>;
2494
+ declare function UtilsBinary__NS__blobToText(blob: Blob): Promise<string>;
2495
+ declare function UtilsBinary__NS__textToFile(text: string, fileRelativePathOrName: string): Promise<File>;
2496
+ declare function UtilsBinary__NS__fileToText(file: File): Promise<string>;
2497
+ declare function UtilsBinary__NS__jsonToBlob(jsonObj: object): Promise<Blob>;
2498
+ /**
2499
+ * TODO NOT TESTED
2500
+ */
2501
+ declare function UtilsBinary__NS__blobToJson(blob: Blob): Promise<string>;
2502
+ declare function UtilsBinary__NS__getBlobFrom(url: string): Promise<Blob>;
2503
+
2504
+ declare const UtilsString__NS__kebabCaseNoSplitNumbers: (input: string) => string;
2505
+ declare const UtilsStringRegex__NS__containsNonAscii: (pathStringOrPathParts: string) => boolean;
2506
+
2507
+ declare const UtilsI18n__NS__defaultLangLocale: UtilsI18n__NS__CommonLocaleCode;
2508
+ declare enum UtilsI18n__NS__CommonLocaleCodeEnum {
2509
+ PL_PL = "pl-PL",
2510
+ EN_US = "en-US",
2511
+ EN_GB = "en-GB",
2512
+ DE_DE = "de-DE",
2513
+ FR_FR = "fr-FR",
2514
+ ES_ES = "es-ES",
2515
+ ZH_CN = "zh-CN"
2516
+ }
2517
+ declare const UtilsI18n__NS__commonLocales: UtilsI18n__NS__CommonLocaleCode[];
2518
+ type UtilsI18n__NS__CommonLocaleCode = `${UtilsI18n__NS__CommonLocaleCodeEnum}`;
2519
+ interface UtilsI18n__NS__LangOption {
2520
+ code: UtilsI18n__NS__CommonLocaleCode;
2521
+ label: string;
2522
+ }
2523
+ declare const UtilsI18n__NS__LangOptionArr: UtilsI18n__NS__LangOption[];
2524
+ declare function UtilsI18n__NS__detectLocale(): UtilsI18n__NS__CommonLocaleCode;
2525
+ interface UtilsI18n__NS__GettextExtracted {
2526
+ lineNumber: number;
2527
+ gettextString: string;
2528
+ context?: string;
2529
+ /**
2530
+ * translation for specyfic language
2531
+ */
2532
+ translation?: string;
2533
+ }
2534
+ interface UtilsI18n__NS__GettextFile {
2535
+ fileAbsPath: string;
2536
+ fileRelativePath?: string;
2537
+ /**
2538
+ * taon thing - file can be for app or lib
2539
+ */
2540
+ isAppFile?: boolean;
2541
+ tags: UtilsI18n__NS__GettextExtracted[];
2542
+ }
2543
+
2495
2544
  declare class CLI {
2496
2545
  static chalk: chalk$1.Chalk;
2497
2546
  static installEnvironment(globalDependencies?: any): void;
@@ -3033,5 +3082,5 @@ declare const config: {
3033
3082
  helpAlias: string[];
3034
3083
  };
3035
3084
 
3036
- export { $, BaselineSiteJoinprefix, CLI, CoreConfig, CoreModels__NS__BaseProjectTypeArr, CoreModels__NS__BuildTypeArr, CoreModels__NS__BuildWatcherTypeArr, CoreModels__NS__ClassNameStaticProperty, CoreModels__NS__EnvironmentName, CoreModels__NS__GitConnectionArr, CoreModels__NS__HttpMethodArr, CoreModels__NS__ImageFileExtensionArr, CoreModels__NS__InstalationTypeArr, CoreModels__NS__MediaTypeAllArr, CoreModels__NS__MimeTypesObj, CoreModels__NS__NpmSpecialVersions, CoreModels__NS__OrignalClassKey, CoreModels__NS__ReleaseVersionTypeEnum, CoreModels__NS__SPECIAL_APP_READY_MESSAGE, CoreModels__NS__SPECIAL_WORKER_READY_MESSAGE, CoreModels__NS__TaonHttpErrorCustomProp, CoreModels__NS__buildTypeToWatcherFn, CoreModels__NS__hasExitCleaningFunction, CoreModels__NS__localhostDomain, CoreModels__NS__localhostIp127, CoreModels__NS__mimeTypes, CoreModels__NS__parentLocation, CoreModels__NS__pathToChildren, CoreModels__NS__tagForTaskName, FilePathMetaData__NS__embedData, FilePathMetaData__NS__extractData, FilePathMetaData__NS__getOnlyMetadataString, FilesNames__NS__tmpLastSelectedJsonFile, GlobalLibTypeName, GlobalStorage, GlobalTaskManager, GlobalTaskManagerClass, Helpers__NS__ActionInstance, Helpers__NS___fixCommand, Helpers__NS__actionStarted, Helpers__NS__bigMaxBuffer, Helpers__NS__checkProcess, Helpers__NS__cleanExit, Helpers__NS__clearConsole, Helpers__NS__command, Helpers__NS__commandOutputAsString, Helpers__NS__commandOutputAsStringAsync, Helpers__NS__contain, Helpers__NS__createFolder, Helpers__NS__createSymLink, Helpers__NS__error, Helpers__NS__execute, Helpers__NS__exists, Helpers__NS__filesFrom, Helpers__NS__foldersFrom, Helpers__NS__getFilesFrom, Helpers__NS__getFoldersFrom, Helpers__NS__getIsBrowser, Helpers__NS__getIsElectron, Helpers__NS__getIsNode, Helpers__NS__getIsRunningInGitBash, Helpers__NS__getIsSupportedTaonTerminal, Helpers__NS__getIsVerboseMode, Helpers__NS__getIsVerboseModeOrTnp, Helpers__NS__getIsWebSQL, Helpers__NS__getIsWsl, Helpers__NS__getStdio, Helpers__NS__hideNodeWarnings, Helpers__NS__info, Helpers__NS__isBlob, Helpers__NS__isBuffer, Helpers__NS__isClass, Helpers__NS__isExistedSymlink, Helpers__NS__isFile, Helpers__NS__isFolder, Helpers__NS__isRunningInDocker, Helpers__NS__isRunningInLinuxGraphicsCapableEnvironment, Helpers__NS__isSymlinkFileExitedOrUnexisted, Helpers__NS__isSymlinkThatMatchesUrl, Helpers__NS__isUnexistedLink, Helpers__NS__killOnPort, Helpers__NS__killProcess, Helpers__NS__killProcessByPort, Helpers__NS__linksToFolderFrom, Helpers__NS__linksToFoldersFrom, Helpers__NS__log, Helpers__NS__logError, Helpers__NS__logInfo, Helpers__NS__logProc, Helpers__NS__logSuccess, Helpers__NS__logTaskDone, Helpers__NS__logTaskStarted, Helpers__NS__logWarn, Helpers__NS__mediaTypeFromSrc, Helpers__NS__mkdirp, Helpers__NS__modifyLineByLine, Helpers__NS__msgCacheClear, Helpers__NS__openFolderInFileExplorer, Helpers__NS__parse, Helpers__NS__pathContainLink, Helpers__NS__questionYesNo, Helpers__NS__readFile, Helpers__NS__readJson, Helpers__NS__readJson5, Helpers__NS__readJsonC, Helpers__NS__relative, Helpers__NS__remove, Helpers__NS__removeEmptyLineFromString, Helpers__NS__removeFileIfExists, Helpers__NS__removeFolderIfExists, Helpers__NS__removeIfExists, Helpers__NS__removeSlashAtBegin, Helpers__NS__removeSlashAtEnd, Helpers__NS__removeSymlinks, Helpers__NS__renderError, Helpers__NS__replaceLinesInFile, Helpers__NS__run, Helpers__NS__runAsyncIn, Helpers__NS__runSyncIn, Helpers__NS__runSyncOrAsync, Helpers__NS__sleep, Helpers__NS__stopApplication, Helpers__NS__stringify, Helpers__NS__success, Helpers__NS__taskDone, Helpers__NS__taskStarted, Helpers__NS__throwError, Helpers__NS__timeout, Helpers__NS__tryCatchError, Helpers__NS__tryReadFile, Helpers__NS__tryRemoveDir, Helpers__NS__values, Helpers__NS__wait, Helpers__NS__warn, Helpers__NS__writeFile, Helpers__NS__writeJson, Helpers__NS__writeJson5, Helpers__NS__writeJsonC, LibTypeArr, LibTypeEnum, PREFIXES, PROGRESS_DATA, REGEX_REGION, TAGS, UtilsCliClassMethod__NS__decoratorMethod, UtilsCliClassMethod__NS__getFrom, UtilsCli__NS__getTimeFromThisCLIScriptStart, UtilsDotFile__NS__addCommentAtTheBeginningOfDotFile, UtilsDotFile__NS__getCommentsKeysAsJsonObject, UtilsDotFile__NS__getValueFromDotFile, UtilsDotFile__NS__getValuesKeysAsJsonObject, UtilsDotFile__NS__setCommentToKeyInDotFile, UtilsDotFile__NS__setValueToDotFile, UtilsDotFile__NS__setValuesKeysFromObject, UtilsEtcHosts__NS__SIMULATE_DOMAIN_TAG, UtilsEtcHosts__NS__getEntriesByDomain, UtilsEtcHosts__NS__getEntriesByIp, UtilsEtcHosts__NS__getEntryByComment, UtilsEtcHosts__NS__getLines, UtilsEtcHosts__NS__getPath, UtilsEtcHosts__NS__getTokensData, UtilsEtcHosts__NS__removeEntryByDomain, UtilsEtcHosts__NS__simulateDomain, UtilsEtcHosts__NS__specificEntryExists, UtilsExecProc__NS__executeUntilEndOrThrow, UtilsExecProc__NS__getStdoutWithoutShowingOrThrow, UtilsExecProc__NS__spawnAdminSudo, UtilsExecProc__NS__spawnAsync, UtilsFilesFoldersSync__NS__IGNORE_FOLDERS_FILES_PATTERNS, UtilsFilesFoldersSync__NS__copy, UtilsFilesFoldersSync__NS__copyFile, UtilsFilesFoldersSync__NS__copyFolder, UtilsFilesFoldersSync__NS__filterDontCopy, UtilsFilesFoldersSync__NS__filterOnlyCopy, UtilsFilesFoldersSync__NS__getFilesFrom, UtilsFilesFoldersSync__NS__getFoldersFrom, UtilsFilesFoldersSync__NS__move, UtilsFilesFoldersSync__NS__readFile, UtilsFilesFoldersSync__NS__writeFile, UtilsFilesFolders__NS__IGNORE_FOLDERS_FILES_PATTERNS, UtilsJson__NS__getAtrributiesFromJsonWithComments, UtilsJson__NS__getAttributiesFromComment, UtilsJson__NS__readJson, UtilsJson__NS__readJsonWithComments, UtilsMessages__NS__compilationWrapper, UtilsMigrations__NS__formatTimestamp, UtilsMigrations__NS__getFormattedTimestampFromClassName, UtilsMigrations__NS__getTimestampFromClassName, UtilsMigrations__NS__isValidTimestamp, UtilsNetwork__NS__checkIfServerOnline, UtilsNetwork__NS__checkIfServerPings, UtilsNetwork__NS__checkPing, UtilsNetwork__NS__etcHostHasProperLocalhostIp4Entry, UtilsNetwork__NS__etcHostHasProperLocalhostIp6Entry, UtilsNetwork__NS__getCurrentPublicIpAddress, UtilsNetwork__NS__getEtcHostEntriesByDomain, UtilsNetwork__NS__getEtcHostEntryByComment, UtilsNetwork__NS__getEtcHostEntryByIp, UtilsNetwork__NS__getEtcHostsPath, UtilsNetwork__NS__getFirstIpV4LocalActiveIpAddress, UtilsNetwork__NS__getLocalIpAddresses, UtilsNetwork__NS__isValidDomain, UtilsNetwork__NS__isValidIp, UtilsNetwork__NS__removeEtcHost, UtilsNetwork__NS__setEtcHost, UtilsNetwork__NS__simulateDomain, UtilsNetwork__NS__urlParse, UtilsOs__NS__EDITOR_PROCESSES, UtilsOs__NS__EditorArr, UtilsOs__NS__commandExistsAsync, UtilsOs__NS__commandExistsSync, UtilsOs__NS__detectEditor, UtilsOs__NS__drawHorizontalLine, UtilsOs__NS__drawVerticalLine, UtilsOs__NS__getEditorSettingsJsonPath, UtilsOs__NS__getInotifyWatchCount, UtilsOs__NS__getRealHomeDir, UtilsOs__NS__isBrowser, UtilsOs__NS__isDockerAvailable, UtilsOs__NS__isElectron, UtilsOs__NS__isNode, UtilsOs__NS__isNodeVersionOk, UtilsOs__NS__isPortInUse, UtilsOs__NS__isRunningInBrowser, UtilsOs__NS__isRunningInCliMode, UtilsOs__NS__isRunningInDocker, UtilsOs__NS__isRunningInElectron, UtilsOs__NS__isRunningInLinuxGraphicsCapableEnvironment, UtilsOs__NS__isRunningInMochaTest, UtilsOs__NS__isRunningInNode, UtilsOs__NS__isRunningInOsWithGraphicsCapableEnvironment, UtilsOs__NS__isRunningInSSRMode, UtilsOs__NS__isRunningInVscodeExtension, UtilsOs__NS__isRunningInWebSQL, UtilsOs__NS__isRunningInWindows, UtilsOs__NS__isRunningInWindowsCmd, UtilsOs__NS__isRunningInWindowsPowerShell, UtilsOs__NS__isRunningInWsl, UtilsOs__NS__isRunningNodeDebugger, UtilsOs__NS__isSSRMode, UtilsOs__NS__isVscodeExtension, UtilsOs__NS__isWebSQL, UtilsOs__NS__killAllEditor, UtilsOs__NS__openFolderInFileExplorer, UtilsOs__NS__pipxNestedPackageExists, UtilsOs__NS__pipxPackageExists, UtilsOs__NS__pythonModuleExists, UtilsOs__NS__safeExitProgramCleanUp, UtilsOs__NS__sendNotification, UtilsProcessLogger__NS__ProcessFileLogger, UtilsProcessLogger__NS__baseDirTaonProcessLogs, UtilsProcessLogger__NS__createStickyTopBox, UtilsProcessLogger__NS__getLogsFiles, UtilsProcess__NS__getBashOrShellName, UtilsProcess__NS__getChildPidsOnce, UtilsProcess__NS__getCurrentProcessAndChildUsage, UtilsProcess__NS__getGitBashPath, UtilsProcess__NS__getPathOfExecutable, UtilsProcess__NS__getUsageForPid, UtilsProcess__NS__isNodeVersionOk, UtilsProcess__NS__killAllJava, UtilsProcess__NS__killAllOtherNodeProcesses, UtilsProcess__NS__killProcess, UtilsProcess__NS__killProcessOnPort, UtilsProcess__NS__startAsyncChildProcessCommandUntil, UtilsProcess__NS__startInNewTerminalWindow, UtilsProjects__NS__sortGroupOfProject, UtilsStringRegex__NS__containsNonAscii, UtilsString__NS__kebabCaseNoSplitNumbers, UtilsSudo__NS__getStatus, UtilsSudo__NS__isCurrentProcessElevated, UtilsSudo__NS__isInProperModeForTaon, UtilsTerminal__NS__clearConsole, UtilsTerminal__NS__confirm, UtilsTerminal__NS__drawBigText, UtilsTerminal__NS__drawHorizontalLine, UtilsTerminal__NS__drawVerticalLine, UtilsTerminal__NS__fetchAndDisplay, UtilsTerminal__NS__getTerminalHeight, UtilsTerminal__NS__input, UtilsTerminal__NS__isVerboseModeTaon, UtilsTerminal__NS__multiselect, UtilsTerminal__NS__multiselectActionAndExecute, UtilsTerminal__NS__pipeEnterToStdin, UtilsTerminal__NS__pressAnyKey, UtilsTerminal__NS__pressAnyKeyToContinueAsync, UtilsTerminal__NS__pressAnyKeyToTryAgainErrorOccurred, UtilsTerminal__NS__pressKeyAndContinueSync, UtilsTerminal__NS__previewLongList, UtilsTerminal__NS__previewLongListGitLogLike, UtilsTerminal__NS__select, UtilsTerminal__NS__selectActionAndExecute, UtilsTerminal__NS__wait, UtilsTerminal__NS__waitForUserAnyKey, UtilsTerminal__NS__waitMilliseconds, UtilsTime__NS__formatDuration, UtilsTime__NS__mesureExecutionTime, UtilsTime__NS__mesureExecutionTimeSync, UtilsTime__NS__wait, UtilsTime__NS__waitMilliseconds, UtilsWaitNotifier__NS__getNotifier, UtilsYaml__NS__jsonToYaml, UtilsYaml__NS__readYamlAsJson, UtilsYaml__NS__writeJsonToYaml, UtilsYaml__NS__yamlToJson, Utils__NS__DbBinaryFormatEnum, Utils__NS__binary__NS__arrayBufferToBlob, Utils__NS__binary__NS__base64toBlob, Utils__NS__binary__NS__base64toDbBinaryFormat, Utils__NS__binary__NS__blobToArrayBuffer, Utils__NS__binary__NS__blobToBase64, Utils__NS__binary__NS__blobToFile, Utils__NS__binary__NS__blobToJson, Utils__NS__binary__NS__blobToText, Utils__NS__binary__NS__dbBinaryFormatToBase64, Utils__NS__binary__NS__dbBinaryFormatToText, Utils__NS__binary__NS__fileToBlob, Utils__NS__binary__NS__fileToText, Utils__NS__binary__NS__getBlobFrom, Utils__NS__binary__NS__jsonToBlob, Utils__NS__binary__NS__textToBlob, Utils__NS__binary__NS__textToDbBinaryFormat, Utils__NS__binary__NS__textToFile, Utils__NS__camelize, Utils__NS__css__NS__numValue, Utils__NS__escapeStringForRegEx, Utils__NS__fullDate, Utils__NS__fullDateTime, Utils__NS__getFreePort, Utils__NS__removeChalkSpecialChars, Utils__NS__requireUncached, Utils__NS__sortKeys, Utils__NS__uniqArray, Utils__NS__wait, Utils__NS__waitMilliseconds, ___NS__add, ___NS__after, ___NS__ary, ___NS__assign, ___NS__assignIn, ___NS__assignInWith, ___NS__assignWith, ___NS__at, ___NS__attempt, ___NS__before, ___NS__bind, ___NS__bindAll, ___NS__bindKey, ___NS__camelCase, ___NS__capitalize, ___NS__castArray, ___NS__ceil, ___NS__chain, ___NS__chunk, ___NS__clamp, ___NS__clone, ___NS__cloneDeep, ___NS__cloneDeepWith, ___NS__cloneWith, ___NS__compact, ___NS__concat, ___NS__cond, ___NS__conforms, ___NS__conformsTo, ___NS__constant, ___NS__countBy, ___NS__create, ___NS__curry, ___NS__curryRight, ___NS__debounce, ___NS__deburr, ___NS__defaultTo, ___NS__defaults, ___NS__defaultsDeep, ___NS__defer, ___NS__delay, ___NS__difference, ___NS__differenceBy, ___NS__differenceWith, ___NS__divide, ___NS__drop, ___NS__dropRight, ___NS__dropRightWhile, ___NS__dropWhile, ___NS__each, ___NS__eachRight, ___NS__endsWith, ___NS__entries, ___NS__entriesIn, ___NS__eq, ___NS__escape, ___NS__escapeRegExp, ___NS__every, ___NS__extend, ___NS__extendWith, ___NS__fill, ___NS__filter, ___NS__find, ___NS__findIndex, ___NS__findKey, ___NS__findLast, ___NS__findLastIndex, ___NS__findLastKey, ___NS__first, ___NS__flatMap, ___NS__flatMapDeep, ___NS__flatMapDepth, ___NS__flatten, ___NS__flattenDeep, ___NS__flattenDepth, ___NS__flip, ___NS__floor, ___NS__flow, ___NS__flowRight, ___NS__forEach, ___NS__forEachRight, ___NS__forIn, ___NS__forInRight, ___NS__forOwn, ___NS__forOwnRight, ___NS__fromPairs, ___NS__functions, ___NS__functionsIn, ___NS__get, ___NS__groupBy, ___NS__gt, ___NS__gte, ___NS__has, ___NS__hasIn, ___NS__head, ___NS__identity, ___NS__inRange, ___NS__includes, ___NS__indexOf, ___NS__initial, ___NS__intersection, ___NS__intersectionBy, ___NS__intersectionWith, ___NS__invert, ___NS__invertBy, ___NS__invoke, ___NS__invokeMap, ___NS__isArguments, ___NS__isArray, ___NS__isArrayBuffer, ___NS__isArrayLike, ___NS__isArrayLikeObject, ___NS__isBoolean, ___NS__isBuffer, ___NS__isDate, ___NS__isElement, ___NS__isEmpty, ___NS__isEqual, ___NS__isEqualWith, ___NS__isError, ___NS__isFinite, ___NS__isFunction, ___NS__isInteger, ___NS__isLength, ___NS__isMap, ___NS__isMatch, ___NS__isMatchWith, ___NS__isNaN, ___NS__isNative, ___NS__isNil, ___NS__isNull, ___NS__isNumber, ___NS__isObject, ___NS__isObjectLike, ___NS__isPlainObject, ___NS__isRegExp, ___NS__isSafeInteger, ___NS__isSet, ___NS__isString, ___NS__isSymbol, ___NS__isTypedArray, ___NS__isUndefined, ___NS__isWeakMap, ___NS__isWeakSet, ___NS__iteratee, ___NS__join, ___NS__kebabCase, ___NS__keyBy, ___NS__keys, ___NS__keysIn, ___NS__last, ___NS__lastIndexOf, ___NS__lowerCase, ___NS__lowerFirst, ___NS__lt, ___NS__lte, ___NS__map, ___NS__mapKeys, ___NS__mapValues, ___NS__matches, ___NS__matchesProperty, ___NS__max, ___NS__maxBy, ___NS__mean, ___NS__meanBy, ___NS__memoize, ___NS__merge, ___NS__mergeWith, ___NS__method, ___NS__methodOf, ___NS__min, ___NS__minBy, ___NS__mixin, ___NS__multiply, ___NS__negate, ___NS__noop, ___NS__now, ___NS__nth, ___NS__nthArg, ___NS__omit, ___NS__omitBy, ___NS__once, ___NS__orderBy, ___NS__over, ___NS__overArgs, ___NS__overEvery, ___NS__overSome, ___NS__pad, ___NS__padEnd, ___NS__padStart, ___NS__parseInt, ___NS__partial, ___NS__partialRight, ___NS__partition, ___NS__pick, ___NS__pickBy, ___NS__property, ___NS__propertyOf, ___NS__pull, ___NS__pullAll, ___NS__pullAllBy, ___NS__pullAllWith, ___NS__pullAt, ___NS__random, ___NS__range, ___NS__rangeRight, ___NS__rearg, ___NS__reduce, ___NS__reduceRight, ___NS__reject, ___NS__remove, ___NS__repeat, ___NS__replace, ___NS__rest, ___NS__result, ___NS__reverse, ___NS__round, ___NS__sample, ___NS__sampleSize, ___NS__set, ___NS__setWith, ___NS__shuffle, ___NS__size, ___NS__slice, ___NS__snakeCase, ___NS__some, ___NS__sortBy, ___NS__sortedIndex, ___NS__sortedIndexBy, ___NS__sortedIndexOf, ___NS__sortedLastIndex, ___NS__sortedLastIndexBy, ___NS__sortedLastIndexOf, ___NS__sortedUniq, ___NS__sortedUniqBy, ___NS__split, ___NS__spread, ___NS__startCase, ___NS__startsWith, ___NS__stubArray, ___NS__stubFalse, ___NS__stubObject, ___NS__stubString, ___NS__stubTrue, ___NS__subtract, ___NS__sum, ___NS__sumBy, ___NS__tail, ___NS__take, ___NS__takeRight, ___NS__takeRightWhile, ___NS__takeWhile, ___NS__tap, ___NS__template, ___NS__templateSettings, ___NS__throttle, ___NS__thru, ___NS__times, ___NS__toArray, ___NS__toFinite, ___NS__toInteger, ___NS__toLength, ___NS__toLower, ___NS__toNumber, ___NS__toPairs, ___NS__toPairsIn, ___NS__toPath, ___NS__toPlainObject, ___NS__toSafeInteger, ___NS__toString, ___NS__toUpper, ___NS__transform, ___NS__trim, ___NS__trimEnd, ___NS__trimStart, ___NS__truncate, ___NS__unary, ___NS__unescape, ___NS__union, ___NS__unionBy, ___NS__unionWith, ___NS__uniq, ___NS__uniqBy, ___NS__uniqWith, ___NS__uniqueId, ___NS__unset, ___NS__unzip, ___NS__unzipWith, ___NS__update, ___NS__updateWith, ___NS__upperCase, ___NS__upperFirst, ___NS__values, ___NS__valuesIn, ___NS__without, ___NS__words, ___NS__wrap, ___NS__xor, ___NS__xorBy, ___NS__xorWith, ___NS__zip, ___NS__zipObject, ___NS__zipObjectDeep, ___NS__zipWith, appRelatedFiles, areTrustedForPatchUpdate, backendNodejsOnlyFiles, backendWebsqlNodejsFiles, baseTaonDevProjectsNames, chalk, child_process, chokidar, config, crossPlatformPath, dateformat, dockerTemplates, dotTaonFolder, dotTnpFolder, encoding, extAllowedToExportAndReplaceTSJSCodeFiles, extAllowedToReplace, extForSassLikeFiles, extForStyles, extTemplatesFiles, fg, fileName, filesNotAllowedToClean, fkill, folderName, frameworkName, frameworkNameBe, frontEndOnly, frontendFiles, fse, glob, globalSpinner, http, https, isCloudflareWorker, isElevated, load, mkdirp, ncp, net, notAllowedNames, notAllowedProjectNames, notNeededForExportFiles, os, path, ps, psList, requireDefault, requiredForDev, rimraf, spawn, startAsync, taonActionFromParent, taonBasePathToGlobalDockerTemplatesFn, taonContainers, taonPackageName, taonProjects, taonRepoPathUserInUserDirFn, tempFoldersName, tnpPackageName, urlRepoTaon, urlRepoTaonContainers, win32Path };
3037
- export type { CommandOutputOptions, CoreModels__NS__BaseProjectType, CoreModels__NS__BuildType, CoreModels__NS__BuildWatcherErrorType, CoreModels__NS__BuildWatcherType, CoreModels__NS__CfontAlign, CoreModels__NS__CfontStyle, CoreModels__NS__ContentType, CoreModels__NS__ContentTypeKeys, CoreModels__NS__CoreLibCategory, CoreModels__NS__CutableFileExt, CoreModels__NS__DatabaseType, CoreModels__NS__EnvironmentNameTaon, CoreModels__NS__FileEvent, CoreModels__NS__FileExtension, CoreModels__NS__FrameworkVersion, CoreModels__NS__GitConnection, CoreModels__NS__GlobalDependencies, CoreModels__NS__HttpCode, CoreModels__NS__HttpMethod, CoreModels__NS__ImageFileExtension, CoreModels__NS__InstalationType, CoreModels__NS__LibType, CoreModels__NS__ManifestIcon, CoreModels__NS__MediaType, CoreModels__NS__MimeType, CoreModels__NS__NewFactoryType, CoreModels__NS__NpmInstallOptions, CoreModels__NS__NpmPublishOptions, CoreModels__NS__OutFolder, CoreModels__NS__PROGRESS_DATA_TYPE, CoreModels__NS__PUSHTYPE, CoreModels__NS__Package, CoreModels__NS__ParamType, CoreModels__NS__Position, CoreModels__NS__PreReleaseVersionTag, CoreModels__NS__PwaManifest, CoreModels__NS__ReleaseVersionType, CoreModels__NS__RunOptions, CoreModels__NS__Size, CoreModels__NS__TsUsage, CoreModels__NS__UIFramework, CoreModels__NS__UploadedBackendFile, CoreModels__NS__VSCodeSettings, IPROGRESS_DATA, LibTypeNames, ProcessStartOptions, RunSyncOrAsyncOptions, TaskStats, UtilsEtcHosts__NS__EtchostEntry, UtilsFilesFoldersSync__NS__UtilsFilesFoldersSyncGetFilesFromOptions, UtilsJson__NS__AttrJsoncProp, UtilsNetwork__NS__LocalIpInfo, UtilsNetwork__NS__PingResult, UtilsOs__NS__Editor, UtilsOs__NS__EditorProcess, UtilsProcessLogger__NS__ProcessFileLoggerOptions, UtilsProcessLogger__NS__SpecialEventInProcessLogger, UtilsProjects__NS__OrderAbleProject, UtilsTerminal__NS__SelectChoice, UtilsTerminal__NS__SelectChoiceValue, UtilsTime__NS__ExecutionTimeResult, UtilsTime__NS__MeasureOptions, UtilsWaitNotifier__NS__NotifierOptions, Utils__NS__DbBinaryFormat, Utils__NS__DbBinaryFormatForBrowser };
3085
+ export { $, BaselineSiteJoinprefix, CLI, CoreConfig, CoreModels__NS__BaseProjectTypeArr, CoreModels__NS__BuildTypeArr, CoreModels__NS__BuildWatcherTypeArr, CoreModels__NS__ClassNameStaticProperty, CoreModels__NS__EnvironmentName, CoreModels__NS__GitConnectionArr, CoreModels__NS__HttpMethodArr, CoreModels__NS__ImageFileExtensionArr, CoreModels__NS__InstalationTypeArr, CoreModels__NS__MediaTypeAllArr, CoreModels__NS__MimeTypesObj, CoreModels__NS__NpmSpecialVersions, CoreModels__NS__OrignalClassKey, CoreModels__NS__ReleaseVersionTypeEnum, CoreModels__NS__SPECIAL_APP_READY_MESSAGE, CoreModels__NS__SPECIAL_WORKER_READY_MESSAGE, CoreModels__NS__TaonHttpErrorCustomProp, CoreModels__NS__buildTypeToWatcherFn, CoreModels__NS__hasExitCleaningFunction, CoreModels__NS__localhostDomain, CoreModels__NS__localhostIp127, CoreModels__NS__mimeTypes, CoreModels__NS__parentLocation, CoreModels__NS__pathToChildren, CoreModels__NS__tagForTaskName, DbBinaryFormatEnum, FilePathMetaData__NS__embedData, FilePathMetaData__NS__extractData, FilePathMetaData__NS__getOnlyMetadataString, FilesNames__NS__tmpLastSelectedJsonFile, GlobalLibTypeName, GlobalStorage, GlobalTaskManager, GlobalTaskManagerClass, Helpers__NS__ActionInstance, Helpers__NS___fixCommand, Helpers__NS__actionStarted, Helpers__NS__bigMaxBuffer, Helpers__NS__checkProcess, Helpers__NS__cleanExit, Helpers__NS__clearConsole, Helpers__NS__command, Helpers__NS__commandOutputAsString, Helpers__NS__commandOutputAsStringAsync, Helpers__NS__contain, Helpers__NS__createFolder, Helpers__NS__createSymLink, Helpers__NS__error, Helpers__NS__execute, Helpers__NS__exists, Helpers__NS__filesFrom, Helpers__NS__foldersFrom, Helpers__NS__getFilesFrom, Helpers__NS__getFoldersFrom, Helpers__NS__getIsBrowser, Helpers__NS__getIsElectron, Helpers__NS__getIsNode, Helpers__NS__getIsRunningInGitBash, Helpers__NS__getIsSupportedTaonTerminal, Helpers__NS__getIsVerboseMode, Helpers__NS__getIsVerboseModeOrTnp, Helpers__NS__getIsWebSQL, Helpers__NS__getIsWsl, Helpers__NS__getStdio, Helpers__NS__hideNodeWarnings, Helpers__NS__info, Helpers__NS__isBlob, Helpers__NS__isBuffer, Helpers__NS__isClass, Helpers__NS__isExistedSymlink, Helpers__NS__isFile, Helpers__NS__isFolder, Helpers__NS__isRunningInDocker, Helpers__NS__isRunningInLinuxGraphicsCapableEnvironment, Helpers__NS__isSymlinkFileExitedOrUnexisted, Helpers__NS__isSymlinkThatMatchesUrl, Helpers__NS__isUnexistedLink, Helpers__NS__killOnPort, Helpers__NS__killProcess, Helpers__NS__killProcessByPort, Helpers__NS__linksToFolderFrom, Helpers__NS__linksToFoldersFrom, Helpers__NS__log, Helpers__NS__logError, Helpers__NS__logInfo, Helpers__NS__logProc, Helpers__NS__logSuccess, Helpers__NS__logTaskDone, Helpers__NS__logTaskStarted, Helpers__NS__logWarn, Helpers__NS__mediaTypeFromSrc, Helpers__NS__mkdirp, Helpers__NS__modifyLineByLine, Helpers__NS__msgCacheClear, Helpers__NS__openFolderInFileExplorer, Helpers__NS__parse, Helpers__NS__pathContainLink, Helpers__NS__questionYesNo, Helpers__NS__readFile, Helpers__NS__readJson, Helpers__NS__readJson5, Helpers__NS__readJsonC, Helpers__NS__relative, Helpers__NS__remove, Helpers__NS__removeEmptyLineFromString, Helpers__NS__removeFileIfExists, Helpers__NS__removeFolderIfExists, Helpers__NS__removeIfExists, Helpers__NS__removeSlashAtBegin, Helpers__NS__removeSlashAtEnd, Helpers__NS__removeSymlinks, Helpers__NS__renderError, Helpers__NS__replaceLinesInFile, Helpers__NS__run, Helpers__NS__runAsyncIn, Helpers__NS__runSyncIn, Helpers__NS__runSyncOrAsync, Helpers__NS__sleep, Helpers__NS__stopApplication, Helpers__NS__stringify, Helpers__NS__success, Helpers__NS__taskDone, Helpers__NS__taskStarted, Helpers__NS__throwError, Helpers__NS__timeout, Helpers__NS__tryCatchError, Helpers__NS__tryReadFile, Helpers__NS__tryRemoveDir, Helpers__NS__values, Helpers__NS__wait, Helpers__NS__warn, Helpers__NS__writeFile, Helpers__NS__writeJson, Helpers__NS__writeJson5, Helpers__NS__writeJsonC, LibTypeArr, LibTypeEnum, PREFIXES, PROGRESS_DATA, REGEX_REGION, TAGS, UtilsBinary__NS__arrayBufferToBlob, UtilsBinary__NS__base64toBlob, UtilsBinary__NS__base64toDbBinaryFormat, UtilsBinary__NS__blobToArrayBuffer, UtilsBinary__NS__blobToBase64, UtilsBinary__NS__blobToFile, UtilsBinary__NS__blobToJson, UtilsBinary__NS__blobToText, UtilsBinary__NS__dbBinaryFormatToBase64, UtilsBinary__NS__dbBinaryFormatToText, UtilsBinary__NS__fileToBlob, UtilsBinary__NS__fileToText, UtilsBinary__NS__getBlobFrom, UtilsBinary__NS__jsonToBlob, UtilsBinary__NS__textToBlob, UtilsBinary__NS__textToDbBinaryFormat, UtilsBinary__NS__textToFile, UtilsCliClassMethod__NS__decoratorMethod, UtilsCliClassMethod__NS__getFrom, UtilsCli__NS__getTimeFromThisCLIScriptStart, UtilsDotFile__NS__addCommentAtTheBeginningOfDotFile, UtilsDotFile__NS__getCommentsKeysAsJsonObject, UtilsDotFile__NS__getValueFromDotFile, UtilsDotFile__NS__getValuesKeysAsJsonObject, UtilsDotFile__NS__setCommentToKeyInDotFile, UtilsDotFile__NS__setValueToDotFile, UtilsDotFile__NS__setValuesKeysFromObject, UtilsEtcHosts__NS__SIMULATE_DOMAIN_TAG, UtilsEtcHosts__NS__getEntriesByDomain, UtilsEtcHosts__NS__getEntriesByIp, UtilsEtcHosts__NS__getEntryByComment, UtilsEtcHosts__NS__getLines, UtilsEtcHosts__NS__getPath, UtilsEtcHosts__NS__getTokensData, UtilsEtcHosts__NS__removeEntryByDomain, UtilsEtcHosts__NS__simulateDomain, UtilsEtcHosts__NS__specificEntryExists, UtilsExecProc__NS__executeUntilEndOrThrow, UtilsExecProc__NS__getStdoutWithoutShowingOrThrow, UtilsExecProc__NS__spawnAdminSudo, UtilsExecProc__NS__spawnAsync, UtilsFilesFoldersSync__NS__IGNORE_FOLDERS_FILES_PATTERNS, UtilsFilesFoldersSync__NS__copy, UtilsFilesFoldersSync__NS__copyFile, UtilsFilesFoldersSync__NS__copyFolder, UtilsFilesFoldersSync__NS__filterDontCopy, UtilsFilesFoldersSync__NS__filterOnlyCopy, UtilsFilesFoldersSync__NS__getFilesFrom, UtilsFilesFoldersSync__NS__getFoldersFrom, UtilsFilesFoldersSync__NS__move, UtilsFilesFoldersSync__NS__readFile, UtilsFilesFoldersSync__NS__writeFile, UtilsFilesFolders__NS__IGNORE_FOLDERS_FILES_PATTERNS, UtilsI18n__NS__CommonLocaleCodeEnum, UtilsI18n__NS__LangOptionArr, UtilsI18n__NS__commonLocales, UtilsI18n__NS__defaultLangLocale, UtilsI18n__NS__detectLocale, UtilsJson__NS__getAtrributiesFromJsonWithComments, UtilsJson__NS__getAttributiesFromComment, UtilsJson__NS__readJson, UtilsJson__NS__readJsonWithComments, UtilsMessages__NS__compilationWrapper, UtilsMigrations__NS__formatTimestamp, UtilsMigrations__NS__getFormattedTimestampFromClassName, UtilsMigrations__NS__getTimestampFromClassName, UtilsMigrations__NS__isValidTimestamp, UtilsNetwork__NS__checkIfServerOnline, UtilsNetwork__NS__checkIfServerPings, UtilsNetwork__NS__checkPing, UtilsNetwork__NS__etcHostHasProperLocalhostIp4Entry, UtilsNetwork__NS__etcHostHasProperLocalhostIp6Entry, UtilsNetwork__NS__getCurrentPublicIpAddress, UtilsNetwork__NS__getEtcHostEntriesByDomain, UtilsNetwork__NS__getEtcHostEntryByComment, UtilsNetwork__NS__getEtcHostEntryByIp, UtilsNetwork__NS__getEtcHostsPath, UtilsNetwork__NS__getFirstIpV4LocalActiveIpAddress, UtilsNetwork__NS__getLocalIpAddresses, UtilsNetwork__NS__isValidDomain, UtilsNetwork__NS__isValidIp, UtilsNetwork__NS__removeEtcHost, UtilsNetwork__NS__setEtcHost, UtilsNetwork__NS__simulateDomain, UtilsNetwork__NS__urlParse, UtilsOs__NS__EDITOR_PROCESSES, UtilsOs__NS__EditorArr, UtilsOs__NS__commandExistsAsync, UtilsOs__NS__commandExistsSync, UtilsOs__NS__detectEditor, UtilsOs__NS__drawHorizontalLine, UtilsOs__NS__drawVerticalLine, UtilsOs__NS__getEditorSettingsJsonPath, UtilsOs__NS__getInotifyWatchCount, UtilsOs__NS__getRealHomeDir, UtilsOs__NS__isBrowser, UtilsOs__NS__isDockerAvailable, UtilsOs__NS__isElectron, UtilsOs__NS__isNode, UtilsOs__NS__isNodeVersionOk, UtilsOs__NS__isPortInUse, UtilsOs__NS__isRunningInBrowser, UtilsOs__NS__isRunningInCliMode, UtilsOs__NS__isRunningInDocker, UtilsOs__NS__isRunningInElectron, UtilsOs__NS__isRunningInLinuxGraphicsCapableEnvironment, UtilsOs__NS__isRunningInMochaTest, UtilsOs__NS__isRunningInNode, UtilsOs__NS__isRunningInOsWithGraphicsCapableEnvironment, UtilsOs__NS__isRunningInSSRMode, UtilsOs__NS__isRunningInVscodeExtension, UtilsOs__NS__isRunningInWebSQL, UtilsOs__NS__isRunningInWindows, UtilsOs__NS__isRunningInWindowsCmd, UtilsOs__NS__isRunningInWindowsGitBash, UtilsOs__NS__isRunningInWindowsPowerShell, UtilsOs__NS__isRunningInWsl, UtilsOs__NS__isRunningNodeDebugger, UtilsOs__NS__isSSRMode, UtilsOs__NS__isVscodeExtension, UtilsOs__NS__isWebSQL, UtilsOs__NS__killAllEditor, UtilsOs__NS__openFolderInFileExplorer, UtilsOs__NS__pipxNestedPackageExists, UtilsOs__NS__pipxPackageExists, UtilsOs__NS__pythonModuleExists, UtilsOs__NS__safeExitProgramCleanUp, UtilsOs__NS__sendNotification, UtilsOs__NS__whichOrWherePackageLocated, UtilsProcessLogger__NS__ProcessFileLogger, UtilsProcessLogger__NS__baseDirTaonProcessLogs, UtilsProcessLogger__NS__createStickyTopBox, UtilsProcessLogger__NS__getLogsFiles, UtilsProcess__NS__getBashOrShellName, UtilsProcess__NS__getChildPidsOnce, UtilsProcess__NS__getCurrentProcessAndChildUsage, UtilsProcess__NS__getGitBashPath, UtilsProcess__NS__getPathOfExecutable, UtilsProcess__NS__getUsageForPid, UtilsProcess__NS__isNodeVersionOk, UtilsProcess__NS__killAllJava, UtilsProcess__NS__killAllOtherNodeProcesses, UtilsProcess__NS__killProcess, UtilsProcess__NS__killProcessOnPort, UtilsProcess__NS__startAsyncChildProcessCommandUntil, UtilsProcess__NS__startInNewTerminalWindow, UtilsProjects__NS__sortGroupOfProject, UtilsStringRegex__NS__containsNonAscii, UtilsString__NS__kebabCaseNoSplitNumbers, UtilsSudo__NS__getStatus, UtilsSudo__NS__isCurrentProcessElevated, UtilsSudo__NS__isInProperModeForTaon, UtilsTerminal__NS__clearConsole, UtilsTerminal__NS__confirm, UtilsTerminal__NS__drawBigText, UtilsTerminal__NS__drawHorizontalLine, UtilsTerminal__NS__drawVerticalLine, UtilsTerminal__NS__fetchAndDisplay, UtilsTerminal__NS__getTerminalHeight, UtilsTerminal__NS__input, UtilsTerminal__NS__isVerboseModeTaon, UtilsTerminal__NS__multiselect, UtilsTerminal__NS__multiselectActionAndExecute, UtilsTerminal__NS__pipeEnterToStdin, UtilsTerminal__NS__pressAnyKey, UtilsTerminal__NS__pressAnyKeyToContinueAsync, UtilsTerminal__NS__pressAnyKeyToTryAgainErrorOccurred, UtilsTerminal__NS__pressKeyAndContinueSync, UtilsTerminal__NS__previewLongList, UtilsTerminal__NS__previewLongListGitLogLike, UtilsTerminal__NS__select, UtilsTerminal__NS__selectActionAndExecute, UtilsTerminal__NS__wait, UtilsTerminal__NS__waitForUserAnyKey, UtilsTerminal__NS__waitMilliseconds, UtilsTime__NS__formatDuration, UtilsTime__NS__mesureExecutionTime, UtilsTime__NS__mesureExecutionTimeSync, UtilsTime__NS__wait, UtilsTime__NS__waitMilliseconds, UtilsWaitNotifier__NS__getNotifier, UtilsYaml__NS__jsonToYaml, UtilsYaml__NS__readYamlAsJson, UtilsYaml__NS__writeJsonToYaml, UtilsYaml__NS__yamlToJson, Utils__NS__camelize, Utils__NS__css__NS__numValue, Utils__NS__escapeStringForRegEx, Utils__NS__fullDate, Utils__NS__fullDateTime, Utils__NS__getFreePort, Utils__NS__removeChalkSpecialChars, Utils__NS__requireUncached, Utils__NS__sortKeys, Utils__NS__uniqArray, Utils__NS__wait, Utils__NS__waitMilliseconds, ___NS__add, ___NS__after, ___NS__ary, ___NS__assign, ___NS__assignIn, ___NS__assignInWith, ___NS__assignWith, ___NS__at, ___NS__attempt, ___NS__before, ___NS__bind, ___NS__bindAll, ___NS__bindKey, ___NS__camelCase, ___NS__capitalize, ___NS__castArray, ___NS__ceil, ___NS__chain, ___NS__chunk, ___NS__clamp, ___NS__clone, ___NS__cloneDeep, ___NS__cloneDeepWith, ___NS__cloneWith, ___NS__compact, ___NS__concat, ___NS__cond, ___NS__conforms, ___NS__conformsTo, ___NS__constant, ___NS__countBy, ___NS__create, ___NS__curry, ___NS__curryRight, ___NS__debounce, ___NS__deburr, ___NS__defaultTo, ___NS__defaults, ___NS__defaultsDeep, ___NS__defer, ___NS__delay, ___NS__difference, ___NS__differenceBy, ___NS__differenceWith, ___NS__divide, ___NS__drop, ___NS__dropRight, ___NS__dropRightWhile, ___NS__dropWhile, ___NS__each, ___NS__eachRight, ___NS__endsWith, ___NS__entries, ___NS__entriesIn, ___NS__eq, ___NS__escape, ___NS__escapeRegExp, ___NS__every, ___NS__extend, ___NS__extendWith, ___NS__fill, ___NS__filter, ___NS__find, ___NS__findIndex, ___NS__findKey, ___NS__findLast, ___NS__findLastIndex, ___NS__findLastKey, ___NS__first, ___NS__flatMap, ___NS__flatMapDeep, ___NS__flatMapDepth, ___NS__flatten, ___NS__flattenDeep, ___NS__flattenDepth, ___NS__flip, ___NS__floor, ___NS__flow, ___NS__flowRight, ___NS__forEach, ___NS__forEachRight, ___NS__forIn, ___NS__forInRight, ___NS__forOwn, ___NS__forOwnRight, ___NS__fromPairs, ___NS__functions, ___NS__functionsIn, ___NS__get, ___NS__groupBy, ___NS__gt, ___NS__gte, ___NS__has, ___NS__hasIn, ___NS__head, ___NS__identity, ___NS__inRange, ___NS__includes, ___NS__indexOf, ___NS__initial, ___NS__intersection, ___NS__intersectionBy, ___NS__intersectionWith, ___NS__invert, ___NS__invertBy, ___NS__invoke, ___NS__invokeMap, ___NS__isArguments, ___NS__isArray, ___NS__isArrayBuffer, ___NS__isArrayLike, ___NS__isArrayLikeObject, ___NS__isBoolean, ___NS__isBuffer, ___NS__isDate, ___NS__isElement, ___NS__isEmpty, ___NS__isEqual, ___NS__isEqualWith, ___NS__isError, ___NS__isFinite, ___NS__isFunction, ___NS__isInteger, ___NS__isLength, ___NS__isMap, ___NS__isMatch, ___NS__isMatchWith, ___NS__isNaN, ___NS__isNative, ___NS__isNil, ___NS__isNull, ___NS__isNumber, ___NS__isObject, ___NS__isObjectLike, ___NS__isPlainObject, ___NS__isRegExp, ___NS__isSafeInteger, ___NS__isSet, ___NS__isString, ___NS__isSymbol, ___NS__isTypedArray, ___NS__isUndefined, ___NS__isWeakMap, ___NS__isWeakSet, ___NS__iteratee, ___NS__join, ___NS__kebabCase, ___NS__keyBy, ___NS__keys, ___NS__keysIn, ___NS__last, ___NS__lastIndexOf, ___NS__lowerCase, ___NS__lowerFirst, ___NS__lt, ___NS__lte, ___NS__map, ___NS__mapKeys, ___NS__mapValues, ___NS__matches, ___NS__matchesProperty, ___NS__max, ___NS__maxBy, ___NS__mean, ___NS__meanBy, ___NS__memoize, ___NS__merge, ___NS__mergeWith, ___NS__method, ___NS__methodOf, ___NS__min, ___NS__minBy, ___NS__mixin, ___NS__multiply, ___NS__negate, ___NS__noop, ___NS__now, ___NS__nth, ___NS__nthArg, ___NS__omit, ___NS__omitBy, ___NS__once, ___NS__orderBy, ___NS__over, ___NS__overArgs, ___NS__overEvery, ___NS__overSome, ___NS__pad, ___NS__padEnd, ___NS__padStart, ___NS__parseInt, ___NS__partial, ___NS__partialRight, ___NS__partition, ___NS__pick, ___NS__pickBy, ___NS__property, ___NS__propertyOf, ___NS__pull, ___NS__pullAll, ___NS__pullAllBy, ___NS__pullAllWith, ___NS__pullAt, ___NS__random, ___NS__range, ___NS__rangeRight, ___NS__rearg, ___NS__reduce, ___NS__reduceRight, ___NS__reject, ___NS__remove, ___NS__repeat, ___NS__replace, ___NS__rest, ___NS__result, ___NS__reverse, ___NS__round, ___NS__sample, ___NS__sampleSize, ___NS__set, ___NS__setWith, ___NS__shuffle, ___NS__size, ___NS__slice, ___NS__snakeCase, ___NS__some, ___NS__sortBy, ___NS__sortedIndex, ___NS__sortedIndexBy, ___NS__sortedIndexOf, ___NS__sortedLastIndex, ___NS__sortedLastIndexBy, ___NS__sortedLastIndexOf, ___NS__sortedUniq, ___NS__sortedUniqBy, ___NS__split, ___NS__spread, ___NS__startCase, ___NS__startsWith, ___NS__stubArray, ___NS__stubFalse, ___NS__stubObject, ___NS__stubString, ___NS__stubTrue, ___NS__subtract, ___NS__sum, ___NS__sumBy, ___NS__tail, ___NS__take, ___NS__takeRight, ___NS__takeRightWhile, ___NS__takeWhile, ___NS__tap, ___NS__template, ___NS__templateSettings, ___NS__throttle, ___NS__thru, ___NS__times, ___NS__toArray, ___NS__toFinite, ___NS__toInteger, ___NS__toLength, ___NS__toLower, ___NS__toNumber, ___NS__toPairs, ___NS__toPairsIn, ___NS__toPath, ___NS__toPlainObject, ___NS__toSafeInteger, ___NS__toString, ___NS__toUpper, ___NS__transform, ___NS__trim, ___NS__trimEnd, ___NS__trimStart, ___NS__truncate, ___NS__unary, ___NS__unescape, ___NS__union, ___NS__unionBy, ___NS__unionWith, ___NS__uniq, ___NS__uniqBy, ___NS__uniqWith, ___NS__uniqueId, ___NS__unset, ___NS__unzip, ___NS__unzipWith, ___NS__update, ___NS__updateWith, ___NS__upperCase, ___NS__upperFirst, ___NS__values, ___NS__valuesIn, ___NS__without, ___NS__words, ___NS__wrap, ___NS__xor, ___NS__xorBy, ___NS__xorWith, ___NS__zip, ___NS__zipObject, ___NS__zipObjectDeep, ___NS__zipWith, appRelatedFiles, areTrustedForPatchUpdate, backendNodejsOnlyFiles, backendWebsqlNodejsFiles, baseTaonDevProjectsNames, chalk, child_process, chokidar, config, crossPlatformPath, dateformat, dockerTemplates, dotTaonFolder, dotTnpFolder, encoding, extAllowedToExportAndReplaceTSJSCodeFiles, extAllowedToReplace, extForSassLikeFiles, extForStyles, extTemplatesFiles, fg, fileName, filesNotAllowedToClean, fkill, folderName, frameworkName, frameworkNameBe, frontEndOnly, frontendFiles, fse, glob, globalSpinner, http, https, isCloudflareWorker, isElevated, load, mkdirp, ncp, net, notAllowedNames, notAllowedProjectNames, notNeededForExportFiles, os, path, ps, psList, requireDefault, requiredForDev, rimraf, spawn, startAsync, taonActionFromParent, taonBasePathToGlobalDockerTemplatesFn, taonContainers, taonPackageName, taonProjects, taonRepoPathUserInUserDirFn, tempFoldersName, tnpPackageName, urlRepoTaon, urlRepoTaonContainers, win32Path };
3086
+ export type { CommandOutputOptions, CoreModels__NS__BaseProjectType, CoreModels__NS__BuildType, CoreModels__NS__BuildWatcherErrorType, CoreModels__NS__BuildWatcherType, CoreModels__NS__CfontAlign, CoreModels__NS__CfontStyle, CoreModels__NS__ContentType, CoreModels__NS__ContentTypeKeys, CoreModels__NS__CoreLibCategory, CoreModels__NS__CutableFileExt, CoreModels__NS__DatabaseType, CoreModels__NS__DeepPartial, CoreModels__NS__EnvironmentNameTaon, CoreModels__NS__FileEvent, CoreModels__NS__FileExtension, CoreModels__NS__FrameworkVersion, CoreModels__NS__GitConnection, CoreModels__NS__GlobalDependencies, CoreModels__NS__HttpCode, CoreModels__NS__HttpMethod, CoreModels__NS__ImageFileExtension, CoreModels__NS__InstalationType, CoreModels__NS__LibType, CoreModels__NS__ManifestIcon, CoreModels__NS__MediaType, CoreModels__NS__MimeType, CoreModels__NS__NewFactoryType, CoreModels__NS__NpmInstallOptions, CoreModels__NS__NpmPublishOptions, CoreModels__NS__OutFolder, CoreModels__NS__PROGRESS_DATA_TYPE, CoreModels__NS__PUSHTYPE, CoreModels__NS__Package, CoreModels__NS__ParamType, CoreModels__NS__Position, CoreModels__NS__PreReleaseVersionTag, CoreModels__NS__PwaManifest, CoreModels__NS__ReleaseVersionType, CoreModels__NS__RunOptions, CoreModels__NS__Size, CoreModels__NS__TsUsage, CoreModels__NS__UIFramework, CoreModels__NS__UploadedBackendFile, CoreModels__NS__VSCodeSettings, DbBinaryFormat, DbBinaryFormatForBrowser, IPROGRESS_DATA, LibTypeNames, ProcessStartOptions, RunSyncOrAsyncOptions, TaskStats, UtilsEtcHosts__NS__EtchostEntry, UtilsFilesFoldersSync__NS__UtilsFilesFoldersSyncGetFilesFromOptions, UtilsI18n__NS__CommonLocaleCode, UtilsI18n__NS__GettextExtracted, UtilsI18n__NS__GettextFile, UtilsI18n__NS__LangOption, UtilsJson__NS__AttrJsoncProp, UtilsNetwork__NS__LocalIpInfo, UtilsNetwork__NS__PingResult, UtilsOs__NS__Editor, UtilsOs__NS__EditorProcess, UtilsProcessLogger__NS__ProcessFileLoggerOptions, UtilsProcessLogger__NS__SpecialEventInProcessLogger, UtilsProjects__NS__OrderAbleProject, UtilsTerminal__NS__SelectChoice, UtilsTerminal__NS__SelectChoiceValue, UtilsTime__NS__ExecutionTimeResult, UtilsTime__NS__MeasureOptions, UtilsWaitNotifier__NS__NotifierOptions };