hotstaq 0.5.3

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 (318) hide show
  1. package/.dockerignore +123 -0
  2. package/.eslintignore +17 -0
  3. package/.eslintrc.js +11 -0
  4. package/.vscode/launch.json +201 -0
  5. package/.vscode/settings.json +2 -0
  6. package/.vscode/tasks.json +88 -0
  7. package/CONTRIBUTING.md +157 -0
  8. package/LICENSE +21 -0
  9. package/README.md +128 -0
  10. package/bin/hotstaq +3 -0
  11. package/bin/hotstaq.cmd +1 -0
  12. package/build/src/Hot.d.ts +167 -0
  13. package/build/src/Hot.d.ts.map +1 -0
  14. package/build/src/Hot.js +365 -0
  15. package/build/src/Hot.js.map +1 -0
  16. package/build/src/HotAPI.d.ts +137 -0
  17. package/build/src/HotAPI.d.ts.map +1 -0
  18. package/build/src/HotAPI.js +353 -0
  19. package/build/src/HotAPI.js.map +1 -0
  20. package/build/src/HotAgentAPI.d.ts +22 -0
  21. package/build/src/HotAgentAPI.d.ts.map +1 -0
  22. package/build/src/HotAgentAPI.js +85 -0
  23. package/build/src/HotAgentAPI.js.map +1 -0
  24. package/build/src/HotAgentRoute.d.ts +17 -0
  25. package/build/src/HotAgentRoute.d.ts.map +1 -0
  26. package/build/src/HotAgentRoute.js +109 -0
  27. package/build/src/HotAgentRoute.js.map +1 -0
  28. package/build/src/HotBuilder.d.ts +52 -0
  29. package/build/src/HotBuilder.d.ts.map +1 -0
  30. package/build/src/HotBuilder.js +242 -0
  31. package/build/src/HotBuilder.js.map +1 -0
  32. package/build/src/HotClient.d.ts +31 -0
  33. package/build/src/HotClient.d.ts.map +1 -0
  34. package/build/src/HotClient.js +19 -0
  35. package/build/src/HotClient.js.map +1 -0
  36. package/build/src/HotComponent.d.ts +118 -0
  37. package/build/src/HotComponent.d.ts.map +1 -0
  38. package/build/src/HotComponent.js +89 -0
  39. package/build/src/HotComponent.js.map +1 -0
  40. package/build/src/HotCreator.d.ts +88 -0
  41. package/build/src/HotCreator.d.ts.map +1 -0
  42. package/build/src/HotCreator.js +445 -0
  43. package/build/src/HotCreator.js.map +1 -0
  44. package/build/src/HotDB.d.ts +69 -0
  45. package/build/src/HotDB.d.ts.map +1 -0
  46. package/build/src/HotDB.js +29 -0
  47. package/build/src/HotDB.js.map +1 -0
  48. package/build/src/HotDBConnectionInterface.d.ts +40 -0
  49. package/build/src/HotDBConnectionInterface.d.ts.map +1 -0
  50. package/build/src/HotDBConnectionInterface.js +3 -0
  51. package/build/src/HotDBConnectionInterface.js.map +1 -0
  52. package/build/src/HotFile.d.ts +134 -0
  53. package/build/src/HotFile.d.ts.map +1 -0
  54. package/build/src/HotFile.js +454 -0
  55. package/build/src/HotFile.js.map +1 -0
  56. package/build/src/HotGenerator.d.ts +80 -0
  57. package/build/src/HotGenerator.d.ts.map +1 -0
  58. package/build/src/HotGenerator.js +342 -0
  59. package/build/src/HotGenerator.js.map +1 -0
  60. package/build/src/HotHTTPServer.d.ts +162 -0
  61. package/build/src/HotHTTPServer.d.ts.map +1 -0
  62. package/build/src/HotHTTPServer.js +863 -0
  63. package/build/src/HotHTTPServer.js.map +1 -0
  64. package/build/src/HotIO.d.ts +47 -0
  65. package/build/src/HotIO.d.ts.map +1 -0
  66. package/build/src/HotIO.js +232 -0
  67. package/build/src/HotIO.js.map +1 -0
  68. package/build/src/HotLog.d.ts +60 -0
  69. package/build/src/HotLog.d.ts.map +1 -0
  70. package/build/src/HotLog.js +126 -0
  71. package/build/src/HotLog.js.map +1 -0
  72. package/build/src/HotPage.d.ts +125 -0
  73. package/build/src/HotPage.d.ts.map +1 -0
  74. package/build/src/HotPage.js +178 -0
  75. package/build/src/HotPage.js.map +1 -0
  76. package/build/src/HotRoute.d.ts +82 -0
  77. package/build/src/HotRoute.d.ts.map +1 -0
  78. package/build/src/HotRoute.js +83 -0
  79. package/build/src/HotRoute.js.map +1 -0
  80. package/build/src/HotRouteMethod.d.ts +129 -0
  81. package/build/src/HotRouteMethod.d.ts.map +1 -0
  82. package/build/src/HotRouteMethod.js +84 -0
  83. package/build/src/HotRouteMethod.js.map +1 -0
  84. package/build/src/HotServer.d.ts +152 -0
  85. package/build/src/HotServer.d.ts.map +1 -0
  86. package/build/src/HotServer.js +109 -0
  87. package/build/src/HotServer.js.map +1 -0
  88. package/build/src/HotSetAsWeb.d.ts +2 -0
  89. package/build/src/HotSetAsWeb.d.ts.map +1 -0
  90. package/build/src/HotSetAsWeb.js +5 -0
  91. package/build/src/HotSetAsWeb.js.map +1 -0
  92. package/build/src/HotStaq.d.ts +603 -0
  93. package/build/src/HotStaq.d.ts.map +1 -0
  94. package/build/src/HotStaq.js +1260 -0
  95. package/build/src/HotStaq.js.map +1 -0
  96. package/build/src/HotStaqWeb.d.ts +18 -0
  97. package/build/src/HotStaqWeb.d.ts.map +1 -0
  98. package/build/src/HotStaqWeb.js +44 -0
  99. package/build/src/HotStaqWeb.js.map +1 -0
  100. package/build/src/HotTestDriver.d.ts +63 -0
  101. package/build/src/HotTestDriver.d.ts.map +1 -0
  102. package/build/src/HotTestDriver.js +187 -0
  103. package/build/src/HotTestDriver.js.map +1 -0
  104. package/build/src/HotTestElement.d.ts +71 -0
  105. package/build/src/HotTestElement.d.ts.map +1 -0
  106. package/build/src/HotTestElement.js +37 -0
  107. package/build/src/HotTestElement.js.map +1 -0
  108. package/build/src/HotTestMap.d.ts +83 -0
  109. package/build/src/HotTestMap.d.ts.map +1 -0
  110. package/build/src/HotTestMap.js +58 -0
  111. package/build/src/HotTestMap.js.map +1 -0
  112. package/build/src/HotTestSeleniumDriver.d.ts +86 -0
  113. package/build/src/HotTestSeleniumDriver.d.ts.map +1 -0
  114. package/build/src/HotTestSeleniumDriver.js +400 -0
  115. package/build/src/HotTestSeleniumDriver.js.map +1 -0
  116. package/build/src/HotTester.d.ts +188 -0
  117. package/build/src/HotTester.d.ts.map +1 -0
  118. package/build/src/HotTester.js +622 -0
  119. package/build/src/HotTester.js.map +1 -0
  120. package/build/src/HotTesterAPI.d.ts +15 -0
  121. package/build/src/HotTesterAPI.d.ts.map +1 -0
  122. package/build/src/HotTesterAPI.js +161 -0
  123. package/build/src/HotTesterAPI.js.map +1 -0
  124. package/build/src/HotTesterMocha.d.ts +50 -0
  125. package/build/src/HotTesterMocha.d.ts.map +1 -0
  126. package/build/src/HotTesterMocha.js +205 -0
  127. package/build/src/HotTesterMocha.js.map +1 -0
  128. package/build/src/HotTesterMochaSelenium.d.ts +70 -0
  129. package/build/src/HotTesterMochaSelenium.d.ts.map +1 -0
  130. package/build/src/HotTesterMochaSelenium.js +257 -0
  131. package/build/src/HotTesterMochaSelenium.js.map +1 -0
  132. package/build/src/HotTesterServer.d.ts +114 -0
  133. package/build/src/HotTesterServer.d.ts.map +1 -0
  134. package/build/src/HotTesterServer.js +575 -0
  135. package/build/src/HotTesterServer.js.map +1 -0
  136. package/build/src/api copy.d.ts +2 -0
  137. package/build/src/api copy.d.ts.map +1 -0
  138. package/build/src/api copy.js +153 -0
  139. package/build/src/api copy.js.map +1 -0
  140. package/build/src/api-web.d.ts +2 -0
  141. package/build/src/api-web.d.ts.map +1 -0
  142. package/build/src/api-web.js +45 -0
  143. package/build/src/api-web.js.map +1 -0
  144. package/build/src/api.d.ts +33 -0
  145. package/build/src/api.d.ts.map +1 -0
  146. package/build/src/api.js +78 -0
  147. package/build/src/api.js.map +1 -0
  148. package/build/src/cli.d.ts +2 -0
  149. package/build/src/cli.d.ts.map +1 -0
  150. package/build/src/cli.js +1040 -0
  151. package/build/src/cli.js.map +1 -0
  152. package/build/src/schemas/HotDBInflux.d.ts +63 -0
  153. package/build/src/schemas/HotDBInflux.d.ts.map +1 -0
  154. package/build/src/schemas/HotDBInflux.js +239 -0
  155. package/build/src/schemas/HotDBInflux.js.map +1 -0
  156. package/build/src/schemas/HotDBMigration.d.ts +19 -0
  157. package/build/src/schemas/HotDBMigration.d.ts.map +1 -0
  158. package/build/src/schemas/HotDBMigration.js +15 -0
  159. package/build/src/schemas/HotDBMigration.js.map +1 -0
  160. package/build/src/schemas/HotDBMySQL.d.ts +65 -0
  161. package/build/src/schemas/HotDBMySQL.d.ts.map +1 -0
  162. package/build/src/schemas/HotDBMySQL.js +387 -0
  163. package/build/src/schemas/HotDBMySQL.js.map +1 -0
  164. package/build/src/schemas/HotDBSchema.d.ts +15 -0
  165. package/build/src/schemas/HotDBSchema.d.ts.map +1 -0
  166. package/build/src/schemas/HotDBSchema.js +19 -0
  167. package/build/src/schemas/HotDBSchema.js.map +1 -0
  168. package/build/src/schemas/influx/InfluxSchema.d.ts +14 -0
  169. package/build/src/schemas/influx/InfluxSchema.d.ts.map +1 -0
  170. package/build/src/schemas/influx/InfluxSchema.js +33 -0
  171. package/build/src/schemas/influx/InfluxSchema.js.map +1 -0
  172. package/build/src/schemas/mysql/MySQLSchema.d.ts +39 -0
  173. package/build/src/schemas/mysql/MySQLSchema.d.ts.map +1 -0
  174. package/build/src/schemas/mysql/MySQLSchema.js +151 -0
  175. package/build/src/schemas/mysql/MySQLSchema.js.map +1 -0
  176. package/build/src/schemas/mysql/MySQLSchemaField.d.ts +168 -0
  177. package/build/src/schemas/mysql/MySQLSchemaField.d.ts.map +1 -0
  178. package/build/src/schemas/mysql/MySQLSchemaField.js +260 -0
  179. package/build/src/schemas/mysql/MySQLSchemaField.js.map +1 -0
  180. package/build/src/schemas/mysql/MySQLSchemaTable.d.ts +49 -0
  181. package/build/src/schemas/mysql/MySQLSchemaTable.d.ts.map +1 -0
  182. package/build/src/schemas/mysql/MySQLSchemaTable.js +310 -0
  183. package/build/src/schemas/mysql/MySQLSchemaTable.js.map +1 -0
  184. package/build-web/HotStaq.js +2 -0
  185. package/build-web/HotStaq.min.js +119 -0
  186. package/build-web/HotStaqTests_HelloWorldAPI.js +133 -0
  187. package/builder/docker/Dockerfile.linux.gen +42 -0
  188. package/builder/docker/README.md +36 -0
  189. package/builder/docker/app/start.sh +8 -0
  190. package/builder/docker/dockerignore +3 -0
  191. package/builder/docker/scripts/build.bat +11 -0
  192. package/builder/docker/scripts/build.sh +11 -0
  193. package/builder/docker/scripts/start-app.bat +7 -0
  194. package/builder/docker/scripts/start-app.sh +7 -0
  195. package/builder/docker/scripts/stop-app.bat +5 -0
  196. package/builder/docker/scripts/stop-app.sh +5 -0
  197. package/builder/docker-compose/docker-compose.gen.yaml +41 -0
  198. package/builder/docker-compose/env-skeleton +4 -0
  199. package/creator/project/.vscode/launch.json +59 -0
  200. package/creator/project/README.md +20 -0
  201. package/creator/project/gitignore +118 -0
  202. package/creator/project/npmignore +118 -0
  203. package/creator/public/api-test.hott +28 -0
  204. package/creator/public/index.hott +12 -0
  205. package/creator/ts/src/AppAPI.ts +30 -0
  206. package/creator/ts/src/HelloWorld.ts +39 -0
  207. package/creator/ts/src/WebExport.ts +7 -0
  208. package/creator/ts/tsconfig-web.json +73 -0
  209. package/creator/ts/tsconfig.json +73 -0
  210. package/creator/ts/webpack-api.config.js +57 -0
  211. package/dbstart.sh +19 -0
  212. package/dbstop.sh +4 -0
  213. package/docs/.nojekyll +1 -0
  214. package/docs/README.md +130 -0
  215. package/docs/classes/Hot.md +477 -0
  216. package/docs/classes/HotAPI.md +369 -0
  217. package/docs/classes/HotClient.md +95 -0
  218. package/docs/classes/HotComponent.md +279 -0
  219. package/docs/classes/HotDB.md +247 -0
  220. package/docs/classes/HotDBInflux.md +404 -0
  221. package/docs/classes/HotDBMigration.md +80 -0
  222. package/docs/classes/HotDBMySQL.md +310 -0
  223. package/docs/classes/HotDBSchema.md +51 -0
  224. package/docs/classes/HotFile.md +353 -0
  225. package/docs/classes/HotHTTPServer.md +700 -0
  226. package/docs/classes/HotLog.md +162 -0
  227. package/docs/classes/HotPage.md +357 -0
  228. package/docs/classes/HotRoute.md +312 -0
  229. package/docs/classes/HotRouteMethod.md +271 -0
  230. package/docs/classes/HotServer.md +311 -0
  231. package/docs/classes/HotStaq.md +1155 -0
  232. package/docs/classes/HotTestDestination.md +58 -0
  233. package/docs/classes/HotTestDriver.md +332 -0
  234. package/docs/classes/HotTestElement.md +88 -0
  235. package/docs/classes/HotTestElementOptions.md +71 -0
  236. package/docs/classes/HotTestMap.md +92 -0
  237. package/docs/classes/HotTestSeleniumDriver.md +542 -0
  238. package/docs/classes/HotTester.md +653 -0
  239. package/docs/classes/HotTesterAPI.md +493 -0
  240. package/docs/classes/HotTesterMocha.md +843 -0
  241. package/docs/classes/HotTesterMochaSelenium.md +896 -0
  242. package/docs/classes/HotTesterServer.md +633 -0
  243. package/docs/classes/InfluxSchema.md +74 -0
  244. package/docs/classes/MySQLSchema.md +199 -0
  245. package/docs/classes/MySQLSchemaField.md +330 -0
  246. package/docs/classes/MySQLSchemaTable.md +176 -0
  247. package/docs/enums/ConnectionStatus.md +43 -0
  248. package/docs/enums/DeveloperMode.md +38 -0
  249. package/docs/enums/EventExecutionType.md +43 -0
  250. package/docs/enums/HTTPMethod.md +32 -0
  251. package/docs/enums/HotDBGenerationType.md +30 -0
  252. package/docs/enums/HotLogLevel.md +88 -0
  253. package/docs/interfaces/HotDBConnectionInterface.md +116 -0
  254. package/docs/interfaces/HotDestination.md +62 -0
  255. package/docs/interfaces/HotSite.md +187 -0
  256. package/docs/interfaces/HotSiteMapPath.md +37 -0
  257. package/docs/interfaces/HotSiteRoute.md +79 -0
  258. package/docs/interfaces/HotStartOptions.md +115 -0
  259. package/docs/interfaces/HotTestPage.md +44 -0
  260. package/docs/interfaces/HotTestStop.md +62 -0
  261. package/docs/interfaces/IHotComponent.md +135 -0
  262. package/docs/interfaces/IHotStaq.md +118 -0
  263. package/docs/interfaces/IHotTestElement.md +54 -0
  264. package/docs/interfaces/IHotTestElementOptions.md +43 -0
  265. package/docs/interfaces/MySQLResults.md +43 -0
  266. package/docs/interfaces/MySQLSchemaFieldResult.md +75 -0
  267. package/docs/modules.md +182 -0
  268. package/package.json +65 -0
  269. package/selenium-start.sh +7 -0
  270. package/selenium-stop.sh +3 -0
  271. package/src/Hot.ts +319 -0
  272. package/src/HotAPI.ts +386 -0
  273. package/src/HotAgentAPI.ts +43 -0
  274. package/src/HotAgentRoute.ts +44 -0
  275. package/src/HotBuilder.ts +221 -0
  276. package/src/HotClient.ts +40 -0
  277. package/src/HotComponent.ts +158 -0
  278. package/src/HotCreator.ts +470 -0
  279. package/src/HotDB.ts +79 -0
  280. package/src/HotDBConnectionInterface.ts +40 -0
  281. package/src/HotFile.ts +617 -0
  282. package/src/HotGenerator.ts +446 -0
  283. package/src/HotHTTPServer.ts +954 -0
  284. package/src/HotIO.ts +160 -0
  285. package/src/HotLog.ts +158 -0
  286. package/src/HotPage.ts +206 -0
  287. package/src/HotRoute.ts +137 -0
  288. package/src/HotRouteMethod.ts +216 -0
  289. package/src/HotServer.ts +211 -0
  290. package/src/HotSetAsWeb.ts +3 -0
  291. package/src/HotStaq.ts +1881 -0
  292. package/src/HotTestDriver.ts +171 -0
  293. package/src/HotTestElement.ts +97 -0
  294. package/src/HotTestMap.ts +130 -0
  295. package/src/HotTestSeleniumDriver.ts +381 -0
  296. package/src/HotTester.ts +696 -0
  297. package/src/HotTesterAPI.ts +126 -0
  298. package/src/HotTesterMocha.ts +133 -0
  299. package/src/HotTesterMochaSelenium.ts +189 -0
  300. package/src/HotTesterServer.ts +551 -0
  301. package/src/api-web.ts +48 -0
  302. package/src/api.ts +103 -0
  303. package/src/cli.ts +1225 -0
  304. package/src/schemas/HotDBInflux.ts +211 -0
  305. package/src/schemas/HotDBMigration.ts +24 -0
  306. package/src/schemas/HotDBMySQL.ts +312 -0
  307. package/src/schemas/HotDBSchema.ts +21 -0
  308. package/src/schemas/influx/InfluxSchema.ts +19 -0
  309. package/src/schemas/mysql/MySQLSchema.ts +90 -0
  310. package/src/schemas/mysql/MySQLSchemaField.ts +408 -0
  311. package/src/schemas/mysql/MySQLSchemaTable.ts +353 -0
  312. package/temp/HotStaqWeb.ts +59 -0
  313. package/tsconfig-generator.json +17 -0
  314. package/tsconfig-web.json +74 -0
  315. package/tsconfig.json +73 -0
  316. package/webpack.config.generator.js +41 -0
  317. package/webpack.config.js +53 -0
  318. package/webpack.config.tests.js +56 -0
@@ -0,0 +1,153 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ var HotStaq_1 = require("./HotStaq");
4
+ var Hot_1 = require("./Hot");
5
+ var HotComponent_1 = require("./HotComponent");
6
+ var HotFile_1 = require("./HotFile");
7
+ var HotLog_1 = require("./HotLog");
8
+ var HotPage_1 = require("./HotPage");
9
+ // Server stuff
10
+ var HotAPI_1 = require("./HotAPI");
11
+ var HotRoute_1 = require("./HotRoute");
12
+ var HotRouteMethod_1 = require("./HotRouteMethod");
13
+ var HotServer_1 = require("./HotServer");
14
+ var HotHTTPServer_1 = require("./HotHTTPServer");
15
+ var HotClient_1 = require("./HotClient");
16
+ // Testing stuff
17
+ var HotTestDriver_1 = require("./HotTestDriver");
18
+ var HotTestElement_1 = require("./HotTestElement");
19
+ var HotTester_1 = require("./HotTester");
20
+ var HotTesterAPI_1 = require("./HotTesterAPI");
21
+ var HotTesterMocha_1 = require("./HotTesterMocha");
22
+ var HotTesterMochaSelenium_1 = require("./HotTesterMochaSelenium");
23
+ var HotTesterServer_1 = require("./HotTesterServer");
24
+ var HotTestMap_1 = require("./HotTestMap");
25
+ var HotTestSeleniumDriver_1 = require("./HotTestSeleniumDriver");
26
+ // Database stuff
27
+ var HotDB_1 = require("./HotDB");
28
+ var HotDBSchema_1 = require("./schemas/HotDBSchema");
29
+ // MySQL specific database stuff
30
+ var HotDBMySQL_1 = require("./schemas/HotDBMySQL");
31
+ var HotDBMigration_1 = require("./schemas/HotDBMigration");
32
+ var MySQLSchema_1 = require("./schemas/mysql/MySQLSchema");
33
+ var MySQLSchemaField_1 = require("./schemas/mysql/MySQLSchemaField");
34
+ var MySQLSchemaTable_1 = require("./schemas/mysql/MySQLSchemaTable");
35
+ // Influx specific stuff
36
+ var HotDBInflux_1 = require("./schemas/HotDBInflux");
37
+ var InfluxSchema_1 = require("./schemas/influx/InfluxSchema");
38
+ HotStaq_1.HotStaq.isWeb = false;
39
+ /*export {
40
+ HotStaq,
41
+ HotStartOptions,
42
+ IHotStaq,
43
+ HotSite,
44
+ HotSiteRoute,
45
+ HotSiteMapPath,
46
+ Hot,
47
+ DeveloperMode,
48
+ HotComponent,
49
+ IHotComponent,
50
+ HotAPI,
51
+ EventExecutionType,
52
+ APItoLoad,
53
+ HotFile,
54
+ HotLog,
55
+ HotLogLevel,
56
+ HotPage,
57
+ HotDB,
58
+ ConnectionStatus,
59
+ HotRoute,
60
+ HotRouteMethod,
61
+ HTTPMethod,
62
+ ServerAuthorizationFunction,
63
+ ServerExecutionFunction,
64
+ HotServer,
65
+ HotHTTPServer,
66
+ HotClient,
67
+ HotTesterServer,
68
+ HotTester,
69
+ HotTestStop,
70
+ HotDestination,
71
+ HotTesterAPI,
72
+ HotTesterMocha,
73
+ HotTesterMochaSelenium,
74
+ HotTestMap,
75
+ HotTestDestination,
76
+ HotTestPath,
77
+ HotTestPage,
78
+ HotTestSeleniumDriver,
79
+ HotTestElement,
80
+ IHotTestElement,
81
+ HotTestElementOptions,
82
+ IHotTestElementOptions,
83
+ HotTestDriver,
84
+ HotDBGenerationType,
85
+ HotDBConnectionInterface,
86
+ HotDBSchema,
87
+ HotDBMySQL,
88
+ HotDBMigration,
89
+ MySQLResults,
90
+ MySQLSchema,
91
+ MySQLSchemaFieldResult,
92
+ MySQLSchemaField,
93
+ MySQLSchemaTable,
94
+ HotDBInflux,
95
+ InfluxSchema
96
+ };*/
97
+ module.exports["HotStaq"] = HotStaq_1.HotStaq;
98
+ /*module.exports["HotStartOptions"] = HotStartOptions;
99
+ module.exports["IHotStaq"] = IHotStaq;
100
+ module.exports["HotSite"] = HotSite;
101
+ module.exports["HotSiteRoute"] = HotSiteRoute;
102
+ module.exports["HotSiteMapPath"] = HotSiteMapPath;*/
103
+ module.exports["Hot"] = Hot_1.Hot;
104
+ module.exports["DeveloperMode"] = Hot_1.DeveloperMode;
105
+ module.exports["HotComponent"] = HotComponent_1.HotComponent;
106
+ //module.exports["IHotComponent"] = IHotComponent;
107
+ module.exports["HotAPI"] = HotAPI_1.HotAPI;
108
+ module.exports["EventExecutionType"] = HotAPI_1.EventExecutionType;
109
+ //module.exports["APItoLoad"] = APItoLoad;
110
+ module.exports["HotFile"] = HotFile_1.HotFile;
111
+ module.exports["HotLog"] = HotLog_1.HotLog;
112
+ module.exports["HotLogLevel"] = HotLog_1.HotLogLevel;
113
+ module.exports["HotPage"] = HotPage_1.HotPage;
114
+ module.exports["HotDB"] = HotDB_1.HotDB;
115
+ module.exports["ConnectionStatus"] = HotDB_1.ConnectionStatus;
116
+ module.exports["HotRoute"] = HotRoute_1.HotRoute;
117
+ module.exports["HotRouteMethod"] = HotRouteMethod_1.HotRouteMethod;
118
+ module.exports["HTTPMethod"] = HotRouteMethod_1.HTTPMethod;
119
+ //module.exports["ServerAuthorizationFunction"] = ServerAuthorizationFunction;
120
+ //module.exports["ServerExecutionFunction"] = ServerExecutionFunction;
121
+ module.exports["HotServer"] = HotServer_1.HotServer;
122
+ module.exports["HotHTTPServer"] = HotHTTPServer_1.HotHTTPServer;
123
+ module.exports["HotClient"] = HotClient_1.HotClient;
124
+ module.exports["HotTesterServer"] = HotTesterServer_1.HotTesterServer;
125
+ module.exports["HotTester"] = HotTester_1.HotTester;
126
+ //module.exports["HotTestStop"] = HotTestStop;
127
+ //module.exports["HotDestination"] = HotDestination;
128
+ module.exports["HotTesterAPI"] = HotTesterAPI_1.HotTesterAPI;
129
+ module.exports["HotTesterMocha"] = HotTesterMocha_1.HotTesterMocha;
130
+ module.exports["HotTesterMochaSelenium"] = HotTesterMochaSelenium_1.HotTesterMochaSelenium;
131
+ module.exports["HotTestMap"] = HotTestMap_1.HotTestMap;
132
+ module.exports["HotTestDestination"] = HotTestMap_1.HotTestDestination;
133
+ //module.exports["HotTestPath"] = HotTestPath;
134
+ //module.exports["HotTestPage"] = HotTestPage;
135
+ module.exports["HotTestSeleniumDriver"] = HotTestSeleniumDriver_1.HotTestSeleniumDriver;
136
+ module.exports["HotTestElement"] = HotTestElement_1.HotTestElement;
137
+ //module.exports["IHotTestElement"] = IHotTestElement;
138
+ module.exports["HotTestElementOptions"] = HotTestElement_1.HotTestElementOptions;
139
+ //module.exports["IHotTestElementOptions"] = IHotTestElementOptions;
140
+ module.exports["HotTestDriver"] = HotTestDriver_1.HotTestDriver;
141
+ module.exports["HotDBGenerationType"] = HotDBSchema_1.HotDBGenerationType;
142
+ //module.exports["HotDBConnectionInterface"] = HotDBConnectionInterface;
143
+ module.exports["HotDBSchema"] = HotDBSchema_1.HotDBSchema;
144
+ module.exports["HotDBMySQL"] = HotDBMySQL_1.HotDBMySQL;
145
+ module.exports["HotDBMigration"] = HotDBMigration_1.HotDBMigration;
146
+ //module.exports["MySQLResults"] = MySQLResults;
147
+ module.exports["MySQLSchema"] = MySQLSchema_1.MySQLSchema;
148
+ //module.exports["MySQLSchemaFieldResult"] = MySQLSchemaFieldResult;
149
+ module.exports["MySQLSchemaField"] = MySQLSchemaField_1.MySQLSchemaField;
150
+ module.exports["MySQLSchemaTable"] = MySQLSchemaTable_1.MySQLSchemaTable;
151
+ module.exports["HotDBInflux"] = HotDBInflux_1.HotDBInflux;
152
+ module.exports["InfluxSchema"] = InfluxSchema_1.InfluxSchema;
153
+ //# sourceMappingURL=api%20copy.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"api copy.js","sourceRoot":"","sources":["../../src/api copy.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=api-web.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"api-web.d.ts","sourceRoot":"","sources":["../../src/api-web.ts"],"names":[],"mappings":""}
@@ -0,0 +1,45 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ var HotStaq_1 = require("./HotStaq");
4
+ var Hot_1 = require("./Hot");
5
+ var HotComponent_1 = require("./HotComponent");
6
+ var HotFile_1 = require("./HotFile");
7
+ var HotLog_1 = require("./HotLog");
8
+ var HotPage_1 = require("./HotPage");
9
+ // Server stuff
10
+ var HotAPI_1 = require("./HotAPI");
11
+ var HotRoute_1 = require("./HotRoute");
12
+ var HotRouteMethod_1 = require("./HotRouteMethod");
13
+ var HotServer_1 = require("./HotServer");
14
+ var HotClient_1 = require("./HotClient");
15
+ // Testing stuff
16
+ var HotTestDriver_1 = require("./HotTestDriver");
17
+ var HotTestElement_1 = require("./HotTestElement");
18
+ var HotTester_1 = require("./HotTester");
19
+ var HotTesterAPI_1 = require("./HotTesterAPI");
20
+ var HotTestMap_1 = require("./HotTestMap");
21
+ HotStaq_1.HotStaq.isWeb = true;
22
+ // Can't export interfaces from here :(
23
+ module.exports["HotStaq"] = HotStaq_1.HotStaq;
24
+ module.exports["Hot"] = Hot_1.Hot;
25
+ module.exports["DeveloperMode"] = Hot_1.DeveloperMode;
26
+ module.exports["HotComponent"] = HotComponent_1.HotComponent;
27
+ module.exports["HotAPI"] = HotAPI_1.HotAPI;
28
+ module.exports["EventExecutionType"] = HotAPI_1.EventExecutionType;
29
+ module.exports["HotFile"] = HotFile_1.HotFile;
30
+ module.exports["HotLog"] = HotLog_1.HotLog;
31
+ module.exports["HotLogLevel"] = HotLog_1.HotLogLevel;
32
+ module.exports["HotPage"] = HotPage_1.HotPage;
33
+ module.exports["HotRoute"] = HotRoute_1.HotRoute;
34
+ module.exports["HotRouteMethod"] = HotRouteMethod_1.HotRouteMethod;
35
+ module.exports["HTTPMethod"] = HotRouteMethod_1.HTTPMethod;
36
+ module.exports["HotServer"] = HotServer_1.HotServer;
37
+ module.exports["HotClient"] = HotClient_1.HotClient;
38
+ module.exports["HotTester"] = HotTester_1.HotTester;
39
+ module.exports["HotTesterAPI"] = HotTesterAPI_1.HotTesterAPI;
40
+ module.exports["HotTestMap"] = HotTestMap_1.HotTestMap;
41
+ module.exports["HotTestDestination"] = HotTestMap_1.HotTestDestination;
42
+ module.exports["HotTestElement"] = HotTestElement_1.HotTestElement;
43
+ module.exports["HotTestElementOptions"] = HotTestElement_1.HotTestElementOptions;
44
+ module.exports["HotTestDriver"] = HotTestDriver_1.HotTestDriver;
45
+ //# sourceMappingURL=api-web.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"api-web.js","sourceRoot":"","sources":["../../src/api-web.ts"],"names":[],"mappings":";;AAAA,qCAC0D;AAC1D,6BAA2C;AAC3C,+CAA6D;AAC7D,qCAAoC;AACpC,mCAA+C;AAC/C,qCAAoC;AAEpC,eAAe;AACf,mCAAiE;AACjE,uCAAsC;AACtC,mDAAoH;AACpH,yCAAwC;AACxC,yCAAwC;AAExC,gBAAgB;AAChB,iDAAgD;AAChD,mDAAkH;AAClH,yCAAqE;AACrE,+CAA8C;AAC9C,2CAAwF;AAExF,iBAAO,CAAC,KAAK,GAAG,IAAI,CAAC;AAErB,uCAAuC;AAEvC,MAAM,CAAC,OAAO,CAAC,SAAS,CAAC,GAAG,iBAAO,CAAC;AACpC,MAAM,CAAC,OAAO,CAAC,KAAK,CAAC,GAAG,SAAG,CAAC;AAC5B,MAAM,CAAC,OAAO,CAAC,eAAe,CAAC,GAAG,mBAAa,CAAC;AAChD,MAAM,CAAC,OAAO,CAAC,cAAc,CAAC,GAAG,2BAAY,CAAC;AAC9C,MAAM,CAAC,OAAO,CAAC,QAAQ,CAAC,GAAG,eAAM,CAAC;AAClC,MAAM,CAAC,OAAO,CAAC,oBAAoB,CAAC,GAAG,2BAAkB,CAAC;AAC1D,MAAM,CAAC,OAAO,CAAC,SAAS,CAAC,GAAG,iBAAO,CAAC;AACpC,MAAM,CAAC,OAAO,CAAC,QAAQ,CAAC,GAAG,eAAM,CAAC;AAClC,MAAM,CAAC,OAAO,CAAC,aAAa,CAAC,GAAG,oBAAW,CAAC;AAC5C,MAAM,CAAC,OAAO,CAAC,SAAS,CAAC,GAAG,iBAAO,CAAC;AACpC,MAAM,CAAC,OAAO,CAAC,UAAU,CAAC,GAAG,mBAAQ,CAAC;AACtC,MAAM,CAAC,OAAO,CAAC,gBAAgB,CAAC,GAAG,+BAAc,CAAC;AAClD,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,GAAG,2BAAU,CAAC;AAC1C,MAAM,CAAC,OAAO,CAAC,WAAW,CAAC,GAAG,qBAAS,CAAC;AACxC,MAAM,CAAC,OAAO,CAAC,WAAW,CAAC,GAAG,qBAAS,CAAC;AACxC,MAAM,CAAC,OAAO,CAAC,WAAW,CAAC,GAAG,qBAAS,CAAC;AACxC,MAAM,CAAC,OAAO,CAAC,cAAc,CAAC,GAAG,2BAAY,CAAC;AAC9C,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,GAAG,uBAAU,CAAC;AAC1C,MAAM,CAAC,OAAO,CAAC,oBAAoB,CAAC,GAAG,+BAAkB,CAAC;AAC1D,MAAM,CAAC,OAAO,CAAC,gBAAgB,CAAC,GAAG,+BAAc,CAAC;AAClD,MAAM,CAAC,OAAO,CAAC,uBAAuB,CAAC,GAAG,sCAAqB,CAAC;AAChE,MAAM,CAAC,OAAO,CAAC,eAAe,CAAC,GAAG,6BAAa,CAAC"}
@@ -0,0 +1,33 @@
1
+ import { HotStaq, HotStartOptions, IHotStaq, HotSite, HotSiteRoute, HotSiteMapPath } from "./HotStaq";
2
+ import { Hot, DeveloperMode } from "./Hot";
3
+ import { HotComponent, IHotComponent } from "./HotComponent";
4
+ import { HotFile } from "./HotFile";
5
+ import { HotLog, HotLogLevel } from "./HotLog";
6
+ import { HotPage } from "./HotPage";
7
+ import { HotAPI, EventExecutionType, APItoLoad } from "./HotAPI";
8
+ import { HotRoute } from "./HotRoute";
9
+ import { HotRouteMethod, HTTPMethod, ServerAuthorizationFunction, ServerExecutionFunction } from "./HotRouteMethod";
10
+ import { HotServer } from "./HotServer";
11
+ import { HotHTTPServer } from "./HotHTTPServer";
12
+ import { HotClient } from "./HotClient";
13
+ import { HotTestDriver } from "./HotTestDriver";
14
+ import { IHotTestElement, HotTestElement, HotTestElementOptions, IHotTestElementOptions } from "./HotTestElement";
15
+ import { HotTester, HotTestStop, HotDestination } from "./HotTester";
16
+ import { HotTesterAPI } from "./HotTesterAPI";
17
+ import { HotTesterMocha } from "./HotTesterMocha";
18
+ import { HotTesterMochaSelenium } from "./HotTesterMochaSelenium";
19
+ import { HotTesterServer } from "./HotTesterServer";
20
+ import { HotTestMap, HotTestDestination, HotTestPath, HotTestPage } from "./HotTestMap";
21
+ import { HotTestSeleniumDriver } from "./HotTestSeleniumDriver";
22
+ import { HotDB, ConnectionStatus } from "./HotDB";
23
+ import { HotDBConnectionInterface } from "./HotDBConnectionInterface";
24
+ import { HotDBGenerationType, HotDBSchema } from "./schemas/HotDBSchema";
25
+ import { HotDBMySQL, MySQLResults } from "./schemas/HotDBMySQL";
26
+ import { HotDBMigration } from "./schemas/HotDBMigration";
27
+ import { MySQLSchema } from "./schemas/mysql/MySQLSchema";
28
+ import { MySQLSchemaFieldResult, MySQLSchemaField } from "./schemas/mysql/MySQLSchemaField";
29
+ import { MySQLSchemaTable } from "./schemas/mysql/MySQLSchemaTable";
30
+ import { HotDBInflux } from "./schemas/HotDBInflux";
31
+ import { InfluxSchema } from "./schemas/influx/InfluxSchema";
32
+ export { HotStaq, HotStartOptions, IHotStaq, HotSite, HotSiteRoute, HotSiteMapPath, Hot, DeveloperMode, HotComponent, IHotComponent, HotAPI, EventExecutionType, APItoLoad, HotFile, HotLog, HotLogLevel, HotPage, HotDB, ConnectionStatus, HotRoute, HotRouteMethod, HTTPMethod, ServerAuthorizationFunction, ServerExecutionFunction, HotServer, HotHTTPServer, HotClient, HotTesterServer, HotTester, HotTestStop, HotDestination, HotTesterAPI, HotTesterMocha, HotTesterMochaSelenium, HotTestMap, HotTestDestination, HotTestPath, HotTestPage, HotTestSeleniumDriver, HotTestElement, IHotTestElement, HotTestElementOptions, IHotTestElementOptions, HotTestDriver, HotDBGenerationType, HotDBConnectionInterface, HotDBSchema, HotDBMySQL, HotDBMigration, MySQLResults, MySQLSchema, MySQLSchemaFieldResult, MySQLSchemaField, MySQLSchemaTable, HotDBInflux, InfluxSchema };
33
+ //# sourceMappingURL=api.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"api.d.ts","sourceRoot":"","sources":["../../src/api.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,78 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.InfluxSchema = exports.HotDBInflux = exports.MySQLSchemaTable = exports.MySQLSchemaField = exports.MySQLSchema = exports.HotDBMigration = exports.HotDBMySQL = exports.HotDBSchema = exports.HotDBGenerationType = exports.HotTestDriver = exports.HotTestElementOptions = exports.HotTestElement = exports.HotTestSeleniumDriver = exports.HotTestDestination = exports.HotTestMap = exports.HotTesterMochaSelenium = exports.HotTesterMocha = exports.HotTesterAPI = exports.HotTester = exports.HotTesterServer = exports.HotClient = exports.HotHTTPServer = exports.HotServer = exports.HTTPMethod = exports.HotRouteMethod = exports.HotRoute = exports.ConnectionStatus = exports.HotDB = exports.HotPage = exports.HotLogLevel = exports.HotLog = exports.HotFile = exports.EventExecutionType = exports.HotAPI = exports.HotComponent = exports.DeveloperMode = exports.Hot = exports.HotStaq = void 0;
4
+ var HotStaq_1 = require("./HotStaq");
5
+ Object.defineProperty(exports, "HotStaq", { enumerable: true, get: function () { return HotStaq_1.HotStaq; } });
6
+ var Hot_1 = require("./Hot");
7
+ Object.defineProperty(exports, "Hot", { enumerable: true, get: function () { return Hot_1.Hot; } });
8
+ Object.defineProperty(exports, "DeveloperMode", { enumerable: true, get: function () { return Hot_1.DeveloperMode; } });
9
+ var HotComponent_1 = require("./HotComponent");
10
+ Object.defineProperty(exports, "HotComponent", { enumerable: true, get: function () { return HotComponent_1.HotComponent; } });
11
+ var HotFile_1 = require("./HotFile");
12
+ Object.defineProperty(exports, "HotFile", { enumerable: true, get: function () { return HotFile_1.HotFile; } });
13
+ var HotLog_1 = require("./HotLog");
14
+ Object.defineProperty(exports, "HotLog", { enumerable: true, get: function () { return HotLog_1.HotLog; } });
15
+ Object.defineProperty(exports, "HotLogLevel", { enumerable: true, get: function () { return HotLog_1.HotLogLevel; } });
16
+ var HotPage_1 = require("./HotPage");
17
+ Object.defineProperty(exports, "HotPage", { enumerable: true, get: function () { return HotPage_1.HotPage; } });
18
+ // Server stuff
19
+ var HotAPI_1 = require("./HotAPI");
20
+ Object.defineProperty(exports, "HotAPI", { enumerable: true, get: function () { return HotAPI_1.HotAPI; } });
21
+ Object.defineProperty(exports, "EventExecutionType", { enumerable: true, get: function () { return HotAPI_1.EventExecutionType; } });
22
+ var HotRoute_1 = require("./HotRoute");
23
+ Object.defineProperty(exports, "HotRoute", { enumerable: true, get: function () { return HotRoute_1.HotRoute; } });
24
+ var HotRouteMethod_1 = require("./HotRouteMethod");
25
+ Object.defineProperty(exports, "HotRouteMethod", { enumerable: true, get: function () { return HotRouteMethod_1.HotRouteMethod; } });
26
+ Object.defineProperty(exports, "HTTPMethod", { enumerable: true, get: function () { return HotRouteMethod_1.HTTPMethod; } });
27
+ var HotServer_1 = require("./HotServer");
28
+ Object.defineProperty(exports, "HotServer", { enumerable: true, get: function () { return HotServer_1.HotServer; } });
29
+ var HotHTTPServer_1 = require("./HotHTTPServer");
30
+ Object.defineProperty(exports, "HotHTTPServer", { enumerable: true, get: function () { return HotHTTPServer_1.HotHTTPServer; } });
31
+ var HotClient_1 = require("./HotClient");
32
+ Object.defineProperty(exports, "HotClient", { enumerable: true, get: function () { return HotClient_1.HotClient; } });
33
+ // Testing stuff
34
+ var HotTestDriver_1 = require("./HotTestDriver");
35
+ Object.defineProperty(exports, "HotTestDriver", { enumerable: true, get: function () { return HotTestDriver_1.HotTestDriver; } });
36
+ var HotTestElement_1 = require("./HotTestElement");
37
+ Object.defineProperty(exports, "HotTestElement", { enumerable: true, get: function () { return HotTestElement_1.HotTestElement; } });
38
+ Object.defineProperty(exports, "HotTestElementOptions", { enumerable: true, get: function () { return HotTestElement_1.HotTestElementOptions; } });
39
+ var HotTester_1 = require("./HotTester");
40
+ Object.defineProperty(exports, "HotTester", { enumerable: true, get: function () { return HotTester_1.HotTester; } });
41
+ var HotTesterAPI_1 = require("./HotTesterAPI");
42
+ Object.defineProperty(exports, "HotTesterAPI", { enumerable: true, get: function () { return HotTesterAPI_1.HotTesterAPI; } });
43
+ var HotTesterMocha_1 = require("./HotTesterMocha");
44
+ Object.defineProperty(exports, "HotTesterMocha", { enumerable: true, get: function () { return HotTesterMocha_1.HotTesterMocha; } });
45
+ var HotTesterMochaSelenium_1 = require("./HotTesterMochaSelenium");
46
+ Object.defineProperty(exports, "HotTesterMochaSelenium", { enumerable: true, get: function () { return HotTesterMochaSelenium_1.HotTesterMochaSelenium; } });
47
+ var HotTesterServer_1 = require("./HotTesterServer");
48
+ Object.defineProperty(exports, "HotTesterServer", { enumerable: true, get: function () { return HotTesterServer_1.HotTesterServer; } });
49
+ var HotTestMap_1 = require("./HotTestMap");
50
+ Object.defineProperty(exports, "HotTestMap", { enumerable: true, get: function () { return HotTestMap_1.HotTestMap; } });
51
+ Object.defineProperty(exports, "HotTestDestination", { enumerable: true, get: function () { return HotTestMap_1.HotTestDestination; } });
52
+ var HotTestSeleniumDriver_1 = require("./HotTestSeleniumDriver");
53
+ Object.defineProperty(exports, "HotTestSeleniumDriver", { enumerable: true, get: function () { return HotTestSeleniumDriver_1.HotTestSeleniumDriver; } });
54
+ // Database stuff
55
+ var HotDB_1 = require("./HotDB");
56
+ Object.defineProperty(exports, "HotDB", { enumerable: true, get: function () { return HotDB_1.HotDB; } });
57
+ Object.defineProperty(exports, "ConnectionStatus", { enumerable: true, get: function () { return HotDB_1.ConnectionStatus; } });
58
+ var HotDBSchema_1 = require("./schemas/HotDBSchema");
59
+ Object.defineProperty(exports, "HotDBGenerationType", { enumerable: true, get: function () { return HotDBSchema_1.HotDBGenerationType; } });
60
+ Object.defineProperty(exports, "HotDBSchema", { enumerable: true, get: function () { return HotDBSchema_1.HotDBSchema; } });
61
+ // MySQL specific database stuff
62
+ var HotDBMySQL_1 = require("./schemas/HotDBMySQL");
63
+ Object.defineProperty(exports, "HotDBMySQL", { enumerable: true, get: function () { return HotDBMySQL_1.HotDBMySQL; } });
64
+ var HotDBMigration_1 = require("./schemas/HotDBMigration");
65
+ Object.defineProperty(exports, "HotDBMigration", { enumerable: true, get: function () { return HotDBMigration_1.HotDBMigration; } });
66
+ var MySQLSchema_1 = require("./schemas/mysql/MySQLSchema");
67
+ Object.defineProperty(exports, "MySQLSchema", { enumerable: true, get: function () { return MySQLSchema_1.MySQLSchema; } });
68
+ var MySQLSchemaField_1 = require("./schemas/mysql/MySQLSchemaField");
69
+ Object.defineProperty(exports, "MySQLSchemaField", { enumerable: true, get: function () { return MySQLSchemaField_1.MySQLSchemaField; } });
70
+ var MySQLSchemaTable_1 = require("./schemas/mysql/MySQLSchemaTable");
71
+ Object.defineProperty(exports, "MySQLSchemaTable", { enumerable: true, get: function () { return MySQLSchemaTable_1.MySQLSchemaTable; } });
72
+ // Influx specific stuff
73
+ var HotDBInflux_1 = require("./schemas/HotDBInflux");
74
+ Object.defineProperty(exports, "HotDBInflux", { enumerable: true, get: function () { return HotDBInflux_1.HotDBInflux; } });
75
+ var InfluxSchema_1 = require("./schemas/influx/InfluxSchema");
76
+ Object.defineProperty(exports, "InfluxSchema", { enumerable: true, get: function () { return InfluxSchema_1.InfluxSchema; } });
77
+ HotStaq_1.HotStaq.isWeb = false;
78
+ //# sourceMappingURL=api.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"api.js","sourceRoot":"","sources":["../../src/api.ts"],"names":[],"mappings":";;;AAAA,qCAC0D;AA6CxD,wFA9CO,iBAAO,OA8CP;AA5CT,6BAA2C;AAkDzC,oFAlDO,SAAG,OAkDP;AACH,8FAnDY,mBAAa,OAmDZ;AAlDf,+CAA6D;AAmD3D,6FAnDO,2BAAY,OAmDP;AAlDd,qCAAoC;AAuDlC,wFAvDO,iBAAO,OAuDP;AAtDT,mCAA+C;AAuD7C,uFAvDO,eAAM,OAuDP;AACN,4FAxDe,oBAAW,OAwDf;AAvDb,qCAAoC;AAwDlC,wFAxDO,iBAAO,OAwDP;AAtDT,eAAe;AACf,mCAAiE;AA+C/D,uFA/CO,eAAM,OA+CP;AACN,mGAhDe,2BAAkB,OAgDf;AA/CpB,uCAAsC;AAuDpC,yFAvDO,mBAAQ,OAuDP;AAtDV,mDAAoH;AAuDlH,+FAvDO,+BAAc,OAuDP;AACd,2FAxDuB,2BAAU,OAwDvB;AAvDZ,yCAAwC;AA0DtC,0FA1DO,qBAAS,OA0DP;AAzDX,iDAAgD;AA0D9C,8FA1DO,6BAAa,OA0DP;AAzDf,yCAAwC;AA0DtC,0FA1DO,qBAAS,OA0DP;AAxDX,gBAAgB;AAChB,iDAAgD;AAwE9C,8FAxEO,6BAAa,OAwEP;AAvEf,mDAAkH;AAmEhH,+FAnEwB,+BAAc,OAmExB;AAEd,sGArEwC,sCAAqB,OAqExC;AApEvB,yCAAqE;AAuDnE,0FAvDO,qBAAS,OAuDP;AAtDX,+CAA8C;AAyD5C,6FAzDO,2BAAY,OAyDP;AAxDd,mDAAkD;AAyDhD,+FAzDO,+BAAc,OAyDP;AAxDhB,mEAAkE;AAyDhE,uGAzDO,+CAAsB,OAyDP;AAxDxB,qDAAoD;AAkDlD,gGAlDO,iCAAe,OAkDP;AAjDjB,2CAAwF;AAwDtF,2FAxDO,uBAAU,OAwDP;AACV,mGAzDmB,+BAAkB,OAyDnB;AAxDpB,iEAAgE;AA2D9D,sGA3DO,6CAAqB,OA2DP;AAzDvB,iBAAiB;AACjB,iCAAkD;AAmChD,sFAnCO,aAAK,OAmCP;AACL,iGApCc,wBAAgB,OAoCd;AAlClB,qDAAyE;AA4DvE,oGA5DO,iCAAmB,OA4DP;AAEnB,4FA9D4B,yBAAW,OA8D5B;AA5Db,gCAAgC;AAChC,mDAAgE;AA4D9D,2FA5DO,uBAAU,OA4DP;AA3DZ,2DAA0D;AA4DxD,+FA5DO,+BAAc,OA4DP;AA3DhB,2DAA0D;AA6DxD,4FA7DO,yBAAW,OA6DP;AA5Db,qEAA4F;AA8D1F,iGA9D+B,mCAAgB,OA8D/B;AA7DlB,qEAAoE;AA8DlE,iGA9DO,mCAAgB,OA8DP;AA5DlB,wBAAwB;AACxB,qDAAoD;AA4DlD,4FA5DO,yBAAW,OA4DP;AA3Db,8DAA6D;AA4D3D,6FA5DO,2BAAY,OA4DP;AA1Dd,iBAAO,CAAC,KAAK,GAAG,KAAK,CAAC"}
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=cli.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"cli.d.ts","sourceRoot":"","sources":["../../src/cli.ts"],"names":[],"mappings":""}