apeframework 0.0.0-dev.1 → 0.0.0-dev.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 (575) hide show
  1. package/README.md +8 -36
  2. package/cipher/Algorithm.d.ts +6 -0
  3. package/cipher/Algorithm.js +9 -0
  4. package/cipher/Algorithm.ts +9 -0
  5. package/cipher/Cipher.d.ts +12 -0
  6. package/cipher/Cipher.js +38 -0
  7. package/cipher/Cipher.ts +46 -0
  8. package/cipher/errors/CipherDecryptError.d.ts +5 -0
  9. package/cipher/errors/CipherDecryptError.js +10 -0
  10. package/cipher/errors/CipherDecryptError.ts +11 -0
  11. package/cipher/errors/CipherSecretLengthError.d.ts +5 -0
  12. package/cipher/errors/CipherSecretLengthError.js +10 -0
  13. package/cipher/errors/CipherSecretLengthError.ts +11 -0
  14. package/cipher/validateSecretLength.d.ts +3 -0
  15. package/cipher/validateSecretLength.js +16 -0
  16. package/cipher/validateSecretLength.ts +18 -0
  17. package/cli/Args.d.ts +5 -0
  18. package/cli/Args.ts +8 -0
  19. package/cli/Command.d.ts +3 -0
  20. package/cli/Command.ts +7 -0
  21. package/cli/getArgs.d.ts +3 -0
  22. package/cli/getArgs.js +8 -0
  23. package/cli/getArgs.ts +10 -0
  24. package/cli/parseArgs.d.ts +3 -0
  25. package/cli/parseArgs.js +31 -0
  26. package/cli/parseArgs.ts +34 -0
  27. package/cli/utils/exit.d.ts +2 -0
  28. package/cli/utils/exit.js +7 -0
  29. package/cli/utils/exit.ts +7 -0
  30. package/cli/utils/formatList.d.ts +2 -0
  31. package/cli/utils/formatList.js +10 -0
  32. package/cli/utils/formatList.ts +11 -0
  33. package/cli/utils/formatTable.d.ts +2 -0
  34. package/cli/utils/formatTable.js +22 -0
  35. package/cli/utils/formatTable.ts +25 -0
  36. package/cli/utils/formatText.d.ts +2 -0
  37. package/cli/utils/formatText.js +8 -0
  38. package/cli/utils/formatText.ts +9 -0
  39. package/cli/utils/write.d.ts +2 -0
  40. package/cli/utils/write.js +7 -0
  41. package/cli/utils/write.ts +7 -0
  42. package/cli/utils/writeLn.d.ts +2 -0
  43. package/cli/utils/writeLn.js +8 -0
  44. package/cli/utils/writeLn.ts +9 -0
  45. package/config/Config.d.ts +2 -0
  46. package/config/Config.ts +5 -0
  47. package/config/Properties.d.ts +8 -0
  48. package/config/Properties.ts +12 -0
  49. package/config/errors/ConfigFileReadError.d.ts +5 -0
  50. package/config/errors/ConfigFileReadError.js +10 -0
  51. package/config/errors/ConfigFileReadError.ts +11 -0
  52. package/config/errors/ConfigParseError.d.ts +5 -0
  53. package/config/errors/ConfigParseError.js +10 -0
  54. package/config/errors/ConfigParseError.ts +11 -0
  55. package/config/errors/ConfigPropertyNameError.d.ts +5 -0
  56. package/config/errors/ConfigPropertyNameError.js +10 -0
  57. package/config/errors/ConfigPropertyNameError.ts +11 -0
  58. package/config/getConfig.d.ts +14 -0
  59. package/config/getConfig.js +21 -0
  60. package/config/getConfig.ts +47 -0
  61. package/config/getPropertyEnvVar.d.ts +2 -0
  62. package/config/getPropertyEnvVar.js +13 -0
  63. package/config/getPropertyEnvVar.ts +15 -0
  64. package/config/parseProperty.d.ts +3 -0
  65. package/config/parseProperty.js +37 -0
  66. package/config/parseProperty.ts +47 -0
  67. package/config/readFile.d.ts +2 -0
  68. package/config/readFile.js +31 -0
  69. package/config/readFile.ts +34 -0
  70. package/config/validatePropertyName.d.ts +2 -0
  71. package/config/validatePropertyName.js +11 -0
  72. package/config/validatePropertyName.ts +13 -0
  73. package/db/ColumnBuilder.d.ts +13 -0
  74. package/db/ColumnBuilder.js +42 -0
  75. package/db/ColumnBuilder.ts +61 -0
  76. package/db/Database.d.ts +19 -0
  77. package/db/Database.js +49 -0
  78. package/db/Database.ts +74 -0
  79. package/db/Driver.d.ts +30 -0
  80. package/db/Driver.ts +33 -0
  81. package/db/NullConstraint.d.ts +2 -0
  82. package/db/NullConstraint.ts +5 -0
  83. package/db/ReferentialAction.d.ts +2 -0
  84. package/db/ReferentialAction.ts +5 -0
  85. package/db/TableBuilder.d.ts +49 -0
  86. package/db/TableBuilder.js +234 -0
  87. package/db/TableBuilder.ts +367 -0
  88. package/db/adapters/mysql/createMysqlDatabase.d.ts +12 -0
  89. package/db/adapters/mysql/createMysqlDatabase.js +32 -0
  90. package/db/adapters/mysql/createMysqlDatabase.ts +39 -0
  91. package/db/adapters/mysql/driver.d.ts +3 -0
  92. package/db/adapters/mysql/driver.js +43 -0
  93. package/db/adapters/mysql/driver.ts +45 -0
  94. package/db/adapters/mysql/typeCast.d.ts +2 -0
  95. package/db/adapters/mysql/typeCast.js +17 -0
  96. package/db/adapters/mysql/typeCast.ts +18 -0
  97. package/db/adapters/postgres/driver.d.ts +3 -0
  98. package/db/adapters/postgres/driver.js +43 -0
  99. package/db/adapters/postgres/driver.ts +45 -0
  100. package/db/adapters/sqlite/driver.d.ts +3 -0
  101. package/db/adapters/sqlite/driver.js +43 -0
  102. package/db/adapters/sqlite/driver.ts +45 -0
  103. package/db/errors/DbColumnLengthError.d.ts +5 -0
  104. package/db/errors/DbColumnLengthError.js +10 -0
  105. package/db/errors/DbColumnLengthError.ts +11 -0
  106. package/db/errors/DbColumnMaxLengthError.d.ts +5 -0
  107. package/db/errors/DbColumnMaxLengthError.js +10 -0
  108. package/db/errors/DbColumnMaxLengthError.ts +11 -0
  109. package/db/errors/DbColumnPrecisionError.d.ts +5 -0
  110. package/db/errors/DbColumnPrecisionError.js +10 -0
  111. package/db/errors/DbColumnPrecisionError.ts +11 -0
  112. package/db/errors/DbColumnScaleError.d.ts +5 -0
  113. package/db/errors/DbColumnScaleError.js +10 -0
  114. package/db/errors/DbColumnScaleError.ts +11 -0
  115. package/db/getConstraintName.d.ts +2 -0
  116. package/db/getConstraintName.js +15 -0
  117. package/db/getConstraintName.ts +18 -0
  118. package/db/getReferentialActionSql.d.ts +3 -0
  119. package/db/getReferentialActionSql.js +12 -0
  120. package/db/getReferentialActionSql.ts +17 -0
  121. package/db/setNullConstraint.d.ts +4 -0
  122. package/db/setNullConstraint.js +9 -0
  123. package/db/setNullConstraint.ts +15 -0
  124. package/db/validateColumnLength.d.ts +2 -0
  125. package/db/validateColumnLength.js +10 -0
  126. package/db/validateColumnLength.ts +11 -0
  127. package/db/validateColumnMaxLength.d.ts +2 -0
  128. package/db/validateColumnMaxLength.js +10 -0
  129. package/db/validateColumnMaxLength.ts +11 -0
  130. package/db/validateColumnPrecision.d.ts +2 -0
  131. package/db/validateColumnPrecision.js +14 -0
  132. package/db/validateColumnPrecision.ts +15 -0
  133. package/env/Env.d.ts +2 -0
  134. package/env/Env.ts +5 -0
  135. package/env/errors/EnvFileReadError.d.ts +5 -0
  136. package/env/errors/EnvFileReadError.js +10 -0
  137. package/env/errors/EnvFileReadError.ts +11 -0
  138. package/env/getEnv.d.ts +8 -0
  139. package/env/getEnv.js +15 -0
  140. package/env/getEnv.ts +24 -0
  141. package/env/readFile.d.ts +3 -0
  142. package/env/readFile.js +24 -0
  143. package/env/readFile.ts +24 -0
  144. package/error/BaseError.d.ts +4 -0
  145. package/error/BaseError.js +12 -0
  146. package/error/BaseError.ts +12 -0
  147. package/jwt/Algorithm.d.ts +6 -0
  148. package/jwt/Algorithm.js +9 -0
  149. package/jwt/Algorithm.ts +9 -0
  150. package/jwt/Jwt.d.ts +19 -0
  151. package/jwt/Jwt.js +61 -0
  152. package/jwt/Jwt.ts +92 -0
  153. package/jwt/Payload.d.ts +7 -0
  154. package/jwt/Payload.ts +10 -0
  155. package/jwt/errors/JwtSecretLengthError.d.ts +5 -0
  156. package/jwt/errors/JwtSecretLengthError.js +10 -0
  157. package/jwt/errors/JwtSecretLengthError.ts +11 -0
  158. package/jwt/validateSecretLength.d.ts +3 -0
  159. package/jwt/validateSecretLength.js +16 -0
  160. package/jwt/validateSecretLength.ts +18 -0
  161. package/logger/Level.d.ts +9 -0
  162. package/logger/Level.js +12 -0
  163. package/logger/Level.ts +12 -0
  164. package/logger/Logger.d.ts +10 -0
  165. package/logger/Logger.ts +13 -0
  166. package/logger/Severity.d.ts +10 -0
  167. package/logger/Severity.js +13 -0
  168. package/logger/Severity.ts +13 -0
  169. package/logger/adapters/file/FileLogger.d.ts +20 -0
  170. package/logger/adapters/file/FileLogger.js +70 -0
  171. package/logger/adapters/file/FileLogger.ts +87 -0
  172. package/logger/adapters/file/errors/FileInitError.d.ts +5 -0
  173. package/logger/adapters/file/errors/FileInitError.js +10 -0
  174. package/logger/adapters/file/errors/FileInitError.ts +11 -0
  175. package/logger/adapters/file/initFile.d.ts +2 -0
  176. package/logger/adapters/file/initFile.js +20 -0
  177. package/logger/adapters/file/initFile.ts +18 -0
  178. package/logger/adapters/noop/NoopLogger.d.ts +11 -0
  179. package/logger/adapters/noop/NoopLogger.js +13 -0
  180. package/logger/adapters/noop/NoopLogger.ts +21 -0
  181. package/logger/adapters/stdio/StdioLogger.d.ts +20 -0
  182. package/logger/adapters/stdio/StdioLogger.js +71 -0
  183. package/logger/adapters/stdio/StdioLogger.ts +87 -0
  184. package/mailer/Address.d.ts +5 -0
  185. package/mailer/Address.ts +8 -0
  186. package/mailer/Attachment.d.ts +7 -0
  187. package/mailer/Attachment.ts +11 -0
  188. package/mailer/Event.d.ts +16 -0
  189. package/mailer/Event.ts +20 -0
  190. package/mailer/EventLocation.d.ts +9 -0
  191. package/mailer/EventLocation.ts +12 -0
  192. package/mailer/EventMethod.d.ts +5 -0
  193. package/mailer/EventMethod.js +8 -0
  194. package/mailer/EventMethod.ts +8 -0
  195. package/mailer/List.d.ts +7 -0
  196. package/mailer/List.ts +10 -0
  197. package/mailer/Mail.d.ts +19 -0
  198. package/mailer/Mail.ts +23 -0
  199. package/mailer/Mailer.d.ts +6 -0
  200. package/mailer/Mailer.ts +10 -0
  201. package/mailer/adapters/noop/NoopMailer.d.ts +7 -0
  202. package/mailer/adapters/noop/NoopMailer.js +11 -0
  203. package/mailer/adapters/noop/NoopMailer.ts +15 -0
  204. package/mailer/adapters/smtp/SmtpMailer.d.ts +18 -0
  205. package/mailer/adapters/smtp/SmtpMailer.js +58 -0
  206. package/mailer/adapters/smtp/SmtpMailer.ts +72 -0
  207. package/mailer/adapters/smtp/getAddress.d.ts +4 -0
  208. package/mailer/adapters/smtp/getAddress.js +12 -0
  209. package/mailer/adapters/smtp/getAddress.ts +15 -0
  210. package/mailer/adapters/smtp/getAddresses.d.ts +4 -0
  211. package/mailer/adapters/smtp/getAddresses.js +14 -0
  212. package/mailer/adapters/smtp/getAddresses.ts +17 -0
  213. package/mailer/adapters/smtp/getAttachments.d.ts +4 -0
  214. package/mailer/adapters/smtp/getAttachments.js +17 -0
  215. package/mailer/adapters/smtp/getAttachments.ts +20 -0
  216. package/mailer/errors/MailerAddressEmailError.d.ts +5 -0
  217. package/mailer/errors/MailerAddressEmailError.js +10 -0
  218. package/mailer/errors/MailerAddressEmailError.ts +11 -0
  219. package/mailer/errors/MailerEventAttachmentUrlError.d.ts +5 -0
  220. package/mailer/errors/MailerEventAttachmentUrlError.js +10 -0
  221. package/mailer/errors/MailerEventAttachmentUrlError.ts +11 -0
  222. package/mailer/errors/MailerEventGeolocationError.d.ts +5 -0
  223. package/mailer/errors/MailerEventGeolocationError.js +10 -0
  224. package/mailer/errors/MailerEventGeolocationError.ts +11 -0
  225. package/mailer/errors/MailerEventUrlError.d.ts +5 -0
  226. package/mailer/errors/MailerEventUrlError.js +10 -0
  227. package/mailer/errors/MailerEventUrlError.ts +11 -0
  228. package/mailer/errors/MailerListUrlError.d.ts +5 -0
  229. package/mailer/errors/MailerListUrlError.js +10 -0
  230. package/mailer/errors/MailerListUrlError.ts +11 -0
  231. package/mailer/getIcalendar.d.ts +3 -0
  232. package/mailer/getIcalendar.js +35 -0
  233. package/mailer/getIcalendar.ts +39 -0
  234. package/mailer/validateAddressEmail.d.ts +2 -0
  235. package/mailer/validateAddressEmail.js +11 -0
  236. package/mailer/validateAddressEmail.ts +12 -0
  237. package/mailer/validateEventAttachmentUrl.d.ts +2 -0
  238. package/mailer/validateEventAttachmentUrl.js +11 -0
  239. package/mailer/validateEventAttachmentUrl.ts +12 -0
  240. package/mailer/validateEventGeolocation.d.ts +2 -0
  241. package/mailer/validateEventGeolocation.js +11 -0
  242. package/mailer/validateEventGeolocation.ts +15 -0
  243. package/mailer/validateEventUrl.d.ts +2 -0
  244. package/mailer/validateEventUrl.js +11 -0
  245. package/mailer/validateEventUrl.ts +12 -0
  246. package/mailer/validateListUrl.d.ts +2 -0
  247. package/mailer/validateListUrl.js +11 -0
  248. package/mailer/validateListUrl.ts +12 -0
  249. package/package.json +26 -28
  250. package/parser/Parser.d.ts +2 -0
  251. package/parser/Parser.ts +5 -0
  252. package/parser/errors/ParserInputError.d.ts +5 -0
  253. package/parser/errors/ParserInputError.js +10 -0
  254. package/parser/errors/ParserInputError.ts +11 -0
  255. package/parser/factories/unit/Unit.d.ts +5 -0
  256. package/parser/factories/unit/Unit.ts +8 -0
  257. package/parser/factories/unit/createUnitParser.d.ts +7 -0
  258. package/parser/factories/unit/createUnitParser.js +36 -0
  259. package/parser/factories/unit/createUnitParser.ts +50 -0
  260. package/parser/parseBoolean.d.ts +3 -0
  261. package/parser/parseBoolean.js +14 -0
  262. package/parser/parseBoolean.ts +16 -0
  263. package/parser/parseBytes.d.ts +2 -0
  264. package/parser/parseBytes.js +54 -0
  265. package/parser/parseBytes.ts +55 -0
  266. package/parser/parseInteger.d.ts +3 -0
  267. package/parser/parseInteger.js +19 -0
  268. package/parser/parseInteger.ts +23 -0
  269. package/parser/parseMilliseconds.d.ts +2 -0
  270. package/parser/parseMilliseconds.js +30 -0
  271. package/parser/parseMilliseconds.ts +31 -0
  272. package/parser/parseNumber.d.ts +3 -0
  273. package/parser/parseNumber.js +18 -0
  274. package/parser/parseNumber.ts +22 -0
  275. package/parser/parseString.d.ts +3 -0
  276. package/parser/parseString.js +20 -0
  277. package/parser/parseString.ts +20 -0
  278. package/pwd/Pwd.d.ts +9 -0
  279. package/pwd/Pwd.js +22 -0
  280. package/pwd/Pwd.ts +31 -0
  281. package/pwd/errors/PwdHashRoundsError.d.ts +5 -0
  282. package/pwd/errors/PwdHashRoundsError.js +10 -0
  283. package/pwd/errors/PwdHashRoundsError.ts +11 -0
  284. package/pwd/validateHashRounds.d.ts +2 -0
  285. package/pwd/validateHashRounds.js +10 -0
  286. package/pwd/validateHashRounds.ts +11 -0
  287. package/tls/Tls.d.ts +7 -0
  288. package/tls/Tls.ts +10 -0
  289. package/tls/errors/TlsFileReadError.d.ts +5 -0
  290. package/tls/errors/TlsFileReadError.js +10 -0
  291. package/tls/errors/TlsFileReadError.ts +11 -0
  292. package/tls/getTls.d.ts +8 -0
  293. package/tls/getTls.js +17 -0
  294. package/tls/getTls.ts +24 -0
  295. package/tls/readFile.d.ts +2 -0
  296. package/tls/readFile.js +20 -0
  297. package/tls/readFile.ts +18 -0
  298. package/utils/getRandomHexString.d.ts +2 -0
  299. package/utils/getRandomHexString.js +8 -0
  300. package/utils/getRandomHexString.ts +9 -0
  301. package/utils/getTimestamp.d.ts +2 -0
  302. package/utils/getTimestamp.js +7 -0
  303. package/utils/getTimestamp.ts +7 -0
  304. package/utils/isValidEmail.d.ts +2 -0
  305. package/utils/isValidEmail.js +8 -0
  306. package/utils/isValidEmail.ts +9 -0
  307. package/utils/isValidGeolocation.d.ts +2 -0
  308. package/utils/isValidGeolocation.js +10 -0
  309. package/utils/isValidGeolocation.ts +10 -0
  310. package/utils/isValidHexString.d.ts +2 -0
  311. package/utils/isValidHexString.js +8 -0
  312. package/utils/isValidHexString.ts +9 -0
  313. package/utils/isValidJwtToken.d.ts +2 -0
  314. package/utils/isValidJwtToken.js +8 -0
  315. package/utils/isValidJwtToken.ts +9 -0
  316. package/utils/isValidUrl.d.ts +2 -0
  317. package/utils/isValidUrl.js +19 -0
  318. package/utils/isValidUrl.ts +21 -0
  319. package/utils/isValidUuid.d.ts +2 -0
  320. package/utils/isValidUuid.js +8 -0
  321. package/utils/isValidUuid.ts +10 -0
  322. package/utils/wait.d.ts +2 -0
  323. package/utils/wait.js +9 -0
  324. package/utils/wait.ts +9 -0
  325. package/api/api.d.ts +0 -7
  326. package/api/api.ts +0 -8
  327. package/api/auth.d.ts +0 -9
  328. package/api/auth.js +0 -11
  329. package/api/auth.ts +0 -9
  330. package/api/config.d.ts +0 -13
  331. package/api/config.js +0 -59
  332. package/api/config.ts +0 -69
  333. package/api/endpoint.d.ts +0 -20
  334. package/api/endpoint.js +0 -5
  335. package/api/endpoint.ts +0 -23
  336. package/api/handler.d.ts +0 -8
  337. package/api/handler.js +0 -13
  338. package/api/handler.ts +0 -23
  339. package/api/index.d.ts +0 -7
  340. package/api/index.js +0 -187
  341. package/api/index.ts +0 -97
  342. package/api/route.d.ts +0 -6
  343. package/api/route.ts +0 -4
  344. package/api/router.d.ts +0 -4
  345. package/api/router.js +0 -111
  346. package/api/router.ts +0 -36
  347. package/api/schema.d.ts +0 -29
  348. package/api/schema.js +0 -69
  349. package/api/schema.ts +0 -98
  350. package/app/app.d.ts +0 -6
  351. package/app/app.ts +0 -7
  352. package/app/boot.d.ts +0 -4
  353. package/app/boot.ts +0 -5
  354. package/app/bundle.d.ts +0 -14
  355. package/app/bundle.ts +0 -15
  356. package/app/config.d.ts +0 -4
  357. package/app/config.js +0 -9
  358. package/app/config.ts +0 -9
  359. package/app/index.d.ts +0 -9
  360. package/app/index.js +0 -103
  361. package/app/index.ts +0 -32
  362. package/bin/ape-cli-ts.js +0 -4
  363. package/bin/ape-cli.js +0 -2
  364. package/cli/command.d.ts +0 -4
  365. package/cli/command.ts +0 -7
  366. package/cli/index.d.ts +0 -2
  367. package/cli/index.js +0 -103
  368. package/cli/index.ts +0 -41
  369. package/cli/internal/api.d.ts +0 -3
  370. package/cli/internal/api.js +0 -110
  371. package/cli/internal/api.ts +0 -38
  372. package/cli/internal/index.d.ts +0 -2
  373. package/cli/internal/index.js +0 -13
  374. package/cli/internal/index.ts +0 -9
  375. package/cli/internal/migration.d.ts +0 -3
  376. package/cli/internal/migration.js +0 -214
  377. package/cli/internal/migration.ts +0 -110
  378. package/cli/internal/queue.d.ts +0 -3
  379. package/cli/internal/queue.js +0 -147
  380. package/cli/internal/queue.ts +0 -60
  381. package/cli/utils.d.ts +0 -18
  382. package/cli/utils.js +0 -52
  383. package/cli/utils.ts +0 -48
  384. package/config/config.d.ts +0 -5
  385. package/config/config.ts +0 -6
  386. package/config/configuration.d.ts +0 -63
  387. package/config/configuration.ts +0 -72
  388. package/config/default.d.ts +0 -33
  389. package/config/default.js +0 -34
  390. package/config/default.ts +0 -40
  391. package/config/env.d.ts +0 -66
  392. package/config/env.js +0 -72
  393. package/config/env.ts +0 -79
  394. package/config/index.d.ts +0 -8
  395. package/config/index.js +0 -91
  396. package/config/index.ts +0 -101
  397. package/config/loadFile.d.ts +0 -2
  398. package/config/loadFile.js +0 -13
  399. package/config/loadFile.ts +0 -9
  400. package/config/node.d.ts +0 -5
  401. package/config/node.js +0 -11
  402. package/config/node.ts +0 -7
  403. package/config/store.d.ts +0 -6
  404. package/config/store.js +0 -20
  405. package/config/store.ts +0 -15
  406. package/db/config/index.d.ts +0 -10
  407. package/db/config/index.js +0 -43
  408. package/db/config/index.ts +0 -35
  409. package/db/config/memory.d.ts +0 -3
  410. package/db/config/memory.js +0 -15
  411. package/db/config/memory.ts +0 -13
  412. package/db/config/mysql.d.ts +0 -3
  413. package/db/config/mysql.js +0 -56
  414. package/db/config/mysql.ts +0 -58
  415. package/db/config/postgres.d.ts +0 -3
  416. package/db/config/postgres.js +0 -59
  417. package/db/config/postgres.ts +0 -61
  418. package/db/config/sqlite.d.ts +0 -3
  419. package/db/config/sqlite.js +0 -21
  420. package/db/config/sqlite.ts +0 -20
  421. package/db/database.d.ts +0 -3
  422. package/db/database.js +0 -3
  423. package/db/database.ts +0 -5
  424. package/db/index.d.ts +0 -10
  425. package/db/index.js +0 -32
  426. package/db/index.ts +0 -26
  427. package/db/postProcess.d.ts +0 -3
  428. package/db/postProcess.js +0 -25
  429. package/db/postProcess.ts +0 -27
  430. package/db/schema/builder/_.d.ts +0 -30
  431. package/db/schema/builder/_.js +0 -87
  432. package/db/schema/builder/_.ts +0 -101
  433. package/db/schema/builder/columnBuilder.d.ts +0 -7
  434. package/db/schema/builder/columnBuilder.js +0 -14
  435. package/db/schema/builder/columnBuilder.ts +0 -15
  436. package/db/schema/builder/dataType.d.ts +0 -28
  437. package/db/schema/builder/dataType.js +0 -170
  438. package/db/schema/builder/dataType.ts +0 -184
  439. package/db/schema/builder/index.d.ts +0 -15
  440. package/db/schema/builder/index.js +0 -42
  441. package/db/schema/builder/index.ts +0 -50
  442. package/db/schema/builder/tableBuilder.d.ts +0 -45
  443. package/db/schema/builder/tableBuilder.js +0 -307
  444. package/db/schema/builder/tableBuilder.ts +0 -409
  445. package/db/schema/config.d.ts +0 -4
  446. package/db/schema/config.js +0 -5
  447. package/db/schema/config.ts +0 -3
  448. package/db/schema/index.d.ts +0 -7
  449. package/db/schema/index.js +0 -252
  450. package/db/schema/index.ts +0 -88
  451. package/db/schema/migration.d.ts +0 -6
  452. package/db/schema/migration.ts +0 -7
  453. package/db/schema/migrationList.d.ts +0 -5
  454. package/db/schema/migrationList.ts +0 -5
  455. package/db/schema/migrationSource.d.ts +0 -10
  456. package/db/schema/migrationSource.js +0 -60
  457. package/db/schema/migrationSource.ts +0 -24
  458. package/db/schema/schema.d.ts +0 -6
  459. package/db/schema/schema.ts +0 -7
  460. package/db/utils/index.d.ts +0 -7
  461. package/db/utils/index.js +0 -10
  462. package/db/utils/index.ts +0 -8
  463. package/db/utils/insertGetKey.d.ts +0 -8
  464. package/db/utils/insertGetKey.js +0 -109
  465. package/db/utils/insertGetKey.ts +0 -80
  466. package/i18n/config.d.ts +0 -4
  467. package/i18n/config.js +0 -9
  468. package/i18n/config.ts +0 -9
  469. package/i18n/i18n.d.ts +0 -5
  470. package/i18n/i18n.ts +0 -6
  471. package/i18n/index.d.ts +0 -8
  472. package/i18n/index.js +0 -155
  473. package/i18n/index.ts +0 -42
  474. package/i18n/internationalization.d.ts +0 -3
  475. package/i18n/internationalization.ts +0 -5
  476. package/i18n/translation.d.ts +0 -4
  477. package/i18n/translation.ts +0 -4
  478. package/jwt/config.d.ts +0 -5
  479. package/jwt/config.js +0 -12
  480. package/jwt/config.ts +0 -11
  481. package/jwt/index.d.ts +0 -8
  482. package/jwt/index.js +0 -90
  483. package/jwt/index.ts +0 -60
  484. package/jwt/jwt.d.ts +0 -6
  485. package/jwt/jwt.ts +0 -19
  486. package/jwt/user.d.ts +0 -4
  487. package/jwt/user.ts +0 -4
  488. package/log/config.d.ts +0 -23
  489. package/log/config.js +0 -47
  490. package/log/config.ts +0 -43
  491. package/log/index.d.ts +0 -4
  492. package/log/index.js +0 -9
  493. package/log/index.ts +0 -9
  494. package/log/logger.d.ts +0 -3
  495. package/log/logger.ts +0 -5
  496. package/mail/config.d.ts +0 -4
  497. package/mail/config.js +0 -5
  498. package/mail/config.ts +0 -3
  499. package/mail/email.d.ts +0 -20
  500. package/mail/email.ts +0 -21
  501. package/mail/index.d.ts +0 -2
  502. package/mail/index.js +0 -4
  503. package/mail/index.ts +0 -3
  504. package/mail/mail.d.ts +0 -12
  505. package/mail/mail.ts +0 -13
  506. package/mail/module/bypass/index.d.ts +0 -6
  507. package/mail/module/bypass/index.js +0 -74
  508. package/mail/module/bypass/index.ts +0 -9
  509. package/mail/module/config.d.ts +0 -11
  510. package/mail/module/config.js +0 -24
  511. package/mail/module/config.ts +0 -25
  512. package/mail/module/index.d.ts +0 -8
  513. package/mail/module/index.js +0 -107
  514. package/mail/module/index.ts +0 -61
  515. package/mail/module/smtp/config.d.ts +0 -6
  516. package/mail/module/smtp/config.js +0 -25
  517. package/mail/module/smtp/config.ts +0 -25
  518. package/mail/module/smtp/index.d.ts +0 -9
  519. package/mail/module/smtp/index.js +0 -104
  520. package/mail/module/smtp/index.ts +0 -36
  521. package/mq/index.d.ts +0 -3
  522. package/mq/index.js +0 -27
  523. package/mq/index.ts +0 -4
  524. package/mq/module/bypass/index.d.ts +0 -13
  525. package/mq/module/bypass/index.js +0 -86
  526. package/mq/module/bypass/index.ts +0 -20
  527. package/mq/module/config.d.ts +0 -6
  528. package/mq/module/config.js +0 -15
  529. package/mq/module/config.ts +0 -14
  530. package/mq/module/index.d.ts +0 -9
  531. package/mq/module/index.js +0 -93
  532. package/mq/module/index.ts +0 -24
  533. package/mq/module/redis/config.d.ts +0 -27
  534. package/mq/module/redis/config.js +0 -37
  535. package/mq/module/redis/config.ts +0 -34
  536. package/mq/module/redis/index.d.ts +0 -15
  537. package/mq/module/redis/index.js +0 -132
  538. package/mq/module/redis/index.ts +0 -60
  539. package/mq/mq.d.ts +0 -15
  540. package/mq/mq.ts +0 -18
  541. package/mq/queue.d.ts +0 -9
  542. package/mq/queue.js +0 -2
  543. package/mq/queue.ts +0 -11
  544. package/pwd/config.d.ts +0 -4
  545. package/pwd/config.js +0 -9
  546. package/pwd/config.ts +0 -9
  547. package/pwd/index.d.ts +0 -6
  548. package/pwd/index.js +0 -21
  549. package/pwd/index.ts +0 -20
  550. package/pwd/pwd.d.ts +0 -4
  551. package/pwd/pwd.js +0 -2
  552. package/pwd/pwd.ts +0 -4
  553. package/utils/index.d.ts +0 -25
  554. package/utils/index.js +0 -72
  555. package/utils/index.ts +0 -56
  556. /package/{api/api.js → cli/Args.js} +0 -0
  557. /package/{api/route.js → cli/Command.js} +0 -0
  558. /package/{app/app.js → config/Config.js} +0 -0
  559. /package/{app/boot.js → config/Properties.js} +0 -0
  560. /package/{app/bundle.js → db/Driver.js} +0 -0
  561. /package/{cli/command.js → db/NullConstraint.js} +0 -0
  562. /package/{config/config.js → db/ReferentialAction.js} +0 -0
  563. /package/{config/configuration.js → env/Env.js} +0 -0
  564. /package/{db/schema/migration.js → jwt/Payload.js} +0 -0
  565. /package/{db/schema/migrationList.js → logger/Logger.js} +0 -0
  566. /package/{db/schema/schema.js → mailer/Address.js} +0 -0
  567. /package/{i18n/i18n.js → mailer/Attachment.js} +0 -0
  568. /package/{i18n/internationalization.js → mailer/Event.js} +0 -0
  569. /package/{i18n/translation.js → mailer/EventLocation.js} +0 -0
  570. /package/{jwt/jwt.js → mailer/List.js} +0 -0
  571. /package/{jwt/user.js → mailer/Mail.js} +0 -0
  572. /package/{log/logger.js → mailer/Mailer.js} +0 -0
  573. /package/{mail/email.js → parser/Parser.js} +0 -0
  574. /package/{mail/mail.js → parser/factories/unit/Unit.js} +0 -0
  575. /package/{mq/mq.js → tls/Tls.js} +0 -0
package/app/bundle.d.ts DELETED
@@ -1,14 +0,0 @@
1
- import type { Command } from '../cli/command';
2
- import type { Migration } from '../db/schema/migration';
3
- import type { Queue } from '../mq/queue';
4
- import type { Route } from '../api/route';
5
- import type { Translation } from '../i18n/translation';
6
- export interface Bundle {
7
- bundleId: string;
8
- name: string;
9
- commands?: () => Promise<Command[]>;
10
- migrations?: () => Promise<Migration[]>;
11
- queues?: () => Promise<Queue[]>;
12
- routes?: () => Promise<Route[]>;
13
- translations?: () => Promise<Translation[]>;
14
- }
package/app/bundle.ts DELETED
@@ -1,15 +0,0 @@
1
- import type { Command } from '../cli/command'
2
- import type { Migration } from '../db/schema/migration'
3
- import type { Queue } from '../mq/queue'
4
- import type { Route } from '../api/route'
5
- import type { Translation } from '../i18n/translation'
6
-
7
- export interface Bundle {
8
- bundleId: string,
9
- name: string,
10
- commands?: () => Promise<Command[]>,
11
- migrations?: () => Promise<Migration[]>,
12
- queues?: () => Promise<Queue[]>,
13
- routes?: () => Promise<Route[]>,
14
- translations?: () => Promise<Translation[]>,
15
- }
package/app/config.d.ts DELETED
@@ -1,4 +0,0 @@
1
- declare const _default: {
2
- boot: string;
3
- };
4
- export default _default;
package/app/config.js DELETED
@@ -1,9 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- var config_1 = require("../config");
4
- var config = (0, config_1.getConfig)();
5
- if (!config.appBoot)
6
- throw new Error('app: boot not provided');
7
- exports.default = {
8
- boot: config.appBoot,
9
- };
package/app/config.ts DELETED
@@ -1,9 +0,0 @@
1
- import { getConfig } from '../config'
2
-
3
- const config = getConfig()
4
-
5
- if (!config.appBoot) throw new Error('app: boot not provided')
6
-
7
- export default {
8
- boot: config.appBoot,
9
- }
package/app/index.d.ts DELETED
@@ -1,9 +0,0 @@
1
- import type { App } from './app';
2
- import type { Boot } from './boot';
3
- import type { Bundle } from './bundle';
4
- export { App, Boot, Bundle };
5
- export declare const initBundles: () => Promise<Bundle[]>;
6
- export declare const getBundles: () => Promise<Bundle[]>;
7
- export declare const getBundle: (bundleId: string) => Promise<Bundle | undefined>;
8
- declare const app: App;
9
- export default app;
package/app/index.js DELETED
@@ -1,103 +0,0 @@
1
- "use strict";
2
- var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
- if (k2 === undefined) k2 = k;
4
- var desc = Object.getOwnPropertyDescriptor(m, k);
5
- if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
- desc = { enumerable: true, get: function() { return m[k]; } };
7
- }
8
- Object.defineProperty(o, k2, desc);
9
- }) : (function(o, m, k, k2) {
10
- if (k2 === undefined) k2 = k;
11
- o[k2] = m[k];
12
- }));
13
- var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
- Object.defineProperty(o, "default", { enumerable: true, value: v });
15
- }) : function(o, v) {
16
- o["default"] = v;
17
- });
18
- var __importStar = (this && this.__importStar) || function (mod) {
19
- if (mod && mod.__esModule) return mod;
20
- var result = {};
21
- if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
22
- __setModuleDefault(result, mod);
23
- return result;
24
- };
25
- var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
26
- function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
27
- return new (P || (P = Promise))(function (resolve, reject) {
28
- function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
29
- function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
30
- function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
31
- step((generator = generator.apply(thisArg, _arguments || [])).next());
32
- });
33
- };
34
- var __generator = (this && this.__generator) || function (thisArg, body) {
35
- var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
36
- return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
37
- function verb(n) { return function (v) { return step([n, v]); }; }
38
- function step(op) {
39
- if (f) throw new TypeError("Generator is already executing.");
40
- while (g && (g = 0, op[0] && (_ = 0)), _) try {
41
- if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
42
- if (y = 0, t) op = [op[0] & 2, t.value];
43
- switch (op[0]) {
44
- case 0: case 1: t = op; break;
45
- case 4: _.label++; return { value: op[1], done: false };
46
- case 5: _.label++; y = op[1]; op = [0]; continue;
47
- case 7: op = _.ops.pop(); _.trys.pop(); continue;
48
- default:
49
- if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
50
- if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
51
- if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
52
- if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
53
- if (t[2]) _.ops.pop();
54
- _.trys.pop(); continue;
55
- }
56
- op = body.call(thisArg, _);
57
- } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
58
- if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
59
- }
60
- };
61
- var __importDefault = (this && this.__importDefault) || function (mod) {
62
- return (mod && mod.__esModule) ? mod : { "default": mod };
63
- };
64
- Object.defineProperty(exports, "__esModule", { value: true });
65
- exports.getBundle = exports.getBundles = exports.initBundles = void 0;
66
- var path_1 = __importDefault(require("path"));
67
- var config_1 = __importDefault(require("./config"));
68
- var node_1 = __importDefault(require("../config/node"));
69
- var bundles;
70
- var initBundles = function () { return __awaiter(void 0, void 0, void 0, function () {
71
- var boot;
72
- return __generator(this, function (_a) {
73
- switch (_a.label) {
74
- case 0: return [4 /*yield*/, Promise.resolve("".concat(path_1.default.join(process.cwd(), node_1.default.path, config_1.default.boot))).then(function (s) { return __importStar(require(s)); })];
75
- case 1:
76
- boot = (_a.sent()).default;
77
- return [4 /*yield*/, boot.bundles()];
78
- case 2:
79
- bundles = _a.sent();
80
- return [2 /*return*/, bundles];
81
- }
82
- });
83
- }); };
84
- exports.initBundles = initBundles;
85
- var getBundles = function () { return __awaiter(void 0, void 0, void 0, function () { return __generator(this, function (_a) {
86
- return [2 /*return*/, bundles !== null && bundles !== void 0 ? bundles : (0, exports.initBundles)()];
87
- }); }); };
88
- exports.getBundles = getBundles;
89
- var getBundle = function (bundleId) { return __awaiter(void 0, void 0, void 0, function () {
90
- return __generator(this, function (_a) {
91
- switch (_a.label) {
92
- case 0: return [4 /*yield*/, (0, exports.getBundles)()];
93
- case 1: return [2 /*return*/, (_a.sent()).find(function (bundle) { return bundle.bundleId === bundleId; })];
94
- }
95
- });
96
- }); };
97
- exports.getBundle = getBundle;
98
- var app = {
99
- getBundle: exports.getBundle,
100
- getBundles: exports.getBundles,
101
- initBundles: exports.initBundles,
102
- };
103
- exports.default = app;
package/app/index.ts DELETED
@@ -1,32 +0,0 @@
1
- import path from 'path'
2
- import config from './config'
3
- import node from '../config/node'
4
- import type { App } from './app'
5
- import type { Boot } from './boot'
6
- import type { Bundle } from './bundle'
7
-
8
- export { App, Boot, Bundle }
9
-
10
- let bundles: Bundle[] | undefined
11
-
12
- export const initBundles = async () => {
13
- const boot: Boot = (await import(
14
- path.join(process.cwd(), node.path, config.boot)
15
- )).default
16
- bundles = await boot.bundles()
17
- return bundles
18
- }
19
-
20
- export const getBundles = async () => bundles ?? initBundles()
21
-
22
- export const getBundle = async (bundleId: string) => {
23
- return (await getBundles()).find((bundle) => bundle.bundleId === bundleId)
24
- }
25
-
26
- const app: App = {
27
- getBundle,
28
- getBundles,
29
- initBundles,
30
- }
31
-
32
- export default app
package/bin/ape-cli-ts.js DELETED
@@ -1,4 +0,0 @@
1
- #! /usr/bin/env node
2
- require('tsconfig-paths').register();
3
- require('ts-node').register();
4
- require('../cli').default;
package/bin/ape-cli.js DELETED
@@ -1,2 +0,0 @@
1
- #! /usr/bin/env node
2
- require('../cli').default;
package/cli/command.d.ts DELETED
@@ -1,4 +0,0 @@
1
- export interface Command {
2
- name: string;
3
- handler: (args: (any)[], options: Record<string, any>) => Promise<void>;
4
- }
package/cli/command.ts DELETED
@@ -1,7 +0,0 @@
1
- export interface Command {
2
- name: string,
3
- handler: (
4
- args: (any)[],
5
- options: Record<string, any>,
6
- ) => Promise<void>,
7
- }
package/cli/index.d.ts DELETED
@@ -1,2 +0,0 @@
1
- declare const exec: () => Promise<void>;
2
- export default exec;
package/cli/index.js DELETED
@@ -1,103 +0,0 @@
1
- "use strict";
2
- var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
3
- function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
4
- return new (P || (P = Promise))(function (resolve, reject) {
5
- function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
6
- function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
7
- function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
8
- step((generator = generator.apply(thisArg, _arguments || [])).next());
9
- });
10
- };
11
- var __generator = (this && this.__generator) || function (thisArg, body) {
12
- var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
13
- return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
14
- function verb(n) { return function (v) { return step([n, v]); }; }
15
- function step(op) {
16
- if (f) throw new TypeError("Generator is already executing.");
17
- while (g && (g = 0, op[0] && (_ = 0)), _) try {
18
- if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
19
- if (y = 0, t) op = [op[0] & 2, t.value];
20
- switch (op[0]) {
21
- case 0: case 1: t = op; break;
22
- case 4: _.label++; return { value: op[1], done: false };
23
- case 5: _.label++; y = op[1]; op = [0]; continue;
24
- case 7: op = _.ops.pop(); _.trys.pop(); continue;
25
- default:
26
- if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
27
- if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
28
- if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
29
- if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
30
- if (t[2]) _.ops.pop();
31
- _.trys.pop(); continue;
32
- }
33
- op = body.call(thisArg, _);
34
- } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
35
- if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
36
- }
37
- };
38
- var __importDefault = (this && this.__importDefault) || function (mod) {
39
- return (mod && mod.__esModule) ? mod : { "default": mod };
40
- };
41
- Object.defineProperty(exports, "__esModule", { value: true });
42
- var yargs_parser_1 = __importDefault(require("yargs-parser"));
43
- var utils_1 = require("./utils");
44
- var app_1 = require("../app");
45
- var utils_2 = require("../utils");
46
- var internal_1 = __importDefault(require("./internal"));
47
- var exec = function () { return __awaiter(void 0, void 0, void 0, function () {
48
- var commands, _i, _a, bundle, _b, help, options, args, name, command;
49
- return __generator(this, function (_c) {
50
- switch (_c.label) {
51
- case 0:
52
- commands = internal_1.default.slice();
53
- _i = 0;
54
- return [4 /*yield*/, (0, app_1.getBundles)()];
55
- case 1:
56
- _a = _c.sent();
57
- _c.label = 2;
58
- case 2:
59
- if (!(_i < _a.length)) return [3 /*break*/, 7];
60
- bundle = _a[_i];
61
- if (!bundle.commands) return [3 /*break*/, 4];
62
- return [4 /*yield*/, bundle.commands()];
63
- case 3:
64
- _b = _c.sent();
65
- return [3 /*break*/, 5];
66
- case 4:
67
- _b = [];
68
- _c.label = 5;
69
- case 5:
70
- (_b)
71
- .forEach(function (command) { return commands.push(command); });
72
- _c.label = 6;
73
- case 6:
74
- _i++;
75
- return [3 /*break*/, 2];
76
- case 7:
77
- help = (0, utils_1.formatText)([
78
- 'Usage:',
79
- (0, utils_1.formatTable)([
80
- ['ape-cli <command>', 'Execute command.'],
81
- ['ape-cli help', 'Show help.'],
82
- ]),
83
- '',
84
- 'Commands:',
85
- (0, utils_1.formatList)(commands.map(function (command) { return command.name; }).sort()),
86
- ]);
87
- options = (0, yargs_parser_1.default)(process.argv.slice(2));
88
- args = options._;
89
- delete options._;
90
- name = (0, utils_2.parseString)(args.shift());
91
- if (!name || name === 'help') {
92
- (0, utils_1.writeLn)(help);
93
- (0, utils_1.exit)();
94
- }
95
- command = commands.find(function (command) { return command.name === name; });
96
- if (!command)
97
- throw new Error("cli: invalid command \"".concat(name, "\""));
98
- command.handler(args, options);
99
- return [2 /*return*/];
100
- }
101
- });
102
- }); };
103
- exports.default = exec;
package/cli/index.ts DELETED
@@ -1,41 +0,0 @@
1
- import parseArgs from 'yargs-parser'
2
- import { exit, formatList, formatTable, formatText, writeLn } from './utils'
3
- import { getBundles } from '../app'
4
- import { parseString } from '../utils'
5
- import internalCommands from './internal'
6
-
7
- const exec = async () => {
8
- const commands = internalCommands.slice()
9
- for (const bundle of await getBundles()) {
10
- (bundle.commands ? await bundle.commands() : [])
11
- .forEach((command) => commands.push(command))
12
- }
13
-
14
- const help = formatText([
15
- 'Usage:',
16
- formatTable([
17
- ['ape-cli <command>', 'Execute command.'],
18
- ['ape-cli help', 'Show help.'],
19
- ]),
20
- '',
21
- 'Commands:',
22
- formatList(commands.map((command) => command.name).sort()),
23
- ])
24
-
25
- const options: Record<string, any> = parseArgs(process.argv.slice(2))
26
- const args: any[] = options._
27
- delete options._
28
-
29
- const name = parseString(args.shift())
30
- if (!name || name === 'help') {
31
- writeLn(help)
32
- exit()
33
- }
34
-
35
- const command = commands.find((command) => command.name === name)
36
- if (!command) throw new Error(`cli: invalid command "${name}"`)
37
-
38
- command.handler(args, options)
39
- }
40
-
41
- export default exec
@@ -1,3 +0,0 @@
1
- import type { Command } from '../command';
2
- declare const command: Command;
3
- export default command;
@@ -1,110 +0,0 @@
1
- "use strict";
2
- var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
- if (k2 === undefined) k2 = k;
4
- var desc = Object.getOwnPropertyDescriptor(m, k);
5
- if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
- desc = { enumerable: true, get: function() { return m[k]; } };
7
- }
8
- Object.defineProperty(o, k2, desc);
9
- }) : (function(o, m, k, k2) {
10
- if (k2 === undefined) k2 = k;
11
- o[k2] = m[k];
12
- }));
13
- var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
- Object.defineProperty(o, "default", { enumerable: true, value: v });
15
- }) : function(o, v) {
16
- o["default"] = v;
17
- });
18
- var __importStar = (this && this.__importStar) || function (mod) {
19
- if (mod && mod.__esModule) return mod;
20
- var result = {};
21
- if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
22
- __setModuleDefault(result, mod);
23
- return result;
24
- };
25
- var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
26
- function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
27
- return new (P || (P = Promise))(function (resolve, reject) {
28
- function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
29
- function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
30
- function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
31
- step((generator = generator.apply(thisArg, _arguments || [])).next());
32
- });
33
- };
34
- var __generator = (this && this.__generator) || function (thisArg, body) {
35
- var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
36
- return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
37
- function verb(n) { return function (v) { return step([n, v]); }; }
38
- function step(op) {
39
- if (f) throw new TypeError("Generator is already executing.");
40
- while (g && (g = 0, op[0] && (_ = 0)), _) try {
41
- if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
42
- if (y = 0, t) op = [op[0] & 2, t.value];
43
- switch (op[0]) {
44
- case 0: case 1: t = op; break;
45
- case 4: _.label++; return { value: op[1], done: false };
46
- case 5: _.label++; y = op[1]; op = [0]; continue;
47
- case 7: op = _.ops.pop(); _.trys.pop(); continue;
48
- default:
49
- if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
50
- if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
51
- if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
52
- if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
53
- if (t[2]) _.ops.pop();
54
- _.trys.pop(); continue;
55
- }
56
- op = body.call(thisArg, _);
57
- } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
58
- if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
59
- }
60
- };
61
- Object.defineProperty(exports, "__esModule", { value: true });
62
- var utils_1 = require("../utils");
63
- var utils_2 = require("../../utils");
64
- var help = (0, utils_1.formatText)([
65
- 'Usage:',
66
- (0, utils_1.formatTable)([
67
- ['api start', 'Start API server.'],
68
- ['api help', 'Show help.'],
69
- ]),
70
- ]);
71
- var start = function () { return __awaiter(void 0, void 0, void 0, function () {
72
- var api;
73
- return __generator(this, function (_a) {
74
- switch (_a.label) {
75
- case 0: return [4 /*yield*/, Promise.resolve().then(function () { return __importStar(require('../../api')); })];
76
- case 1:
77
- api = (_a.sent()).default;
78
- api.start();
79
- return [2 /*return*/];
80
- }
81
- });
82
- }); };
83
- var command = {
84
- name: 'api',
85
- handler: function (args) { return __awaiter(void 0, void 0, void 0, function () {
86
- var action, _a;
87
- return __generator(this, function (_b) {
88
- switch (_b.label) {
89
- case 0:
90
- action = (0, utils_2.parseString)(args[0]);
91
- if (!action || action === 'help') {
92
- (0, utils_1.writeLn)(help);
93
- (0, utils_1.exit)();
94
- }
95
- _a = action;
96
- switch (_a) {
97
- case 'start': return [3 /*break*/, 1];
98
- }
99
- return [3 /*break*/, 3];
100
- case 1: return [4 /*yield*/, start()];
101
- case 2:
102
- _b.sent();
103
- return [3 /*break*/, 4];
104
- case 3: throw new Error("api: invalid action \"".concat(action, "\""));
105
- case 4: return [2 /*return*/];
106
- }
107
- });
108
- }); },
109
- };
110
- exports.default = command;
@@ -1,38 +0,0 @@
1
- import { exit, formatTable, formatText, writeLn } from '../utils'
2
- import { parseString } from '../../utils'
3
- import type { Api } from '../../api/api'
4
- import type { Command } from '../command'
5
-
6
- const help = formatText([
7
- 'Usage:',
8
- formatTable([
9
- ['api start', 'Start API server.'],
10
- ['api help', 'Show help.'],
11
- ]),
12
- ])
13
-
14
- const start = async () => {
15
- const api: Api = (await import('../../api')).default
16
- api.start()
17
- }
18
-
19
- const command: Command = {
20
- name: 'api',
21
- handler: async (args) => {
22
- const action = parseString(args[0])
23
- if (!action || action === 'help') {
24
- writeLn(help)
25
- exit()
26
- }
27
-
28
- switch (action) {
29
- case 'start':
30
- await start()
31
- break
32
- default:
33
- throw new Error(`api: invalid action "${action}"`)
34
- }
35
- },
36
- }
37
-
38
- export default command
@@ -1,2 +0,0 @@
1
- declare const _default: import("../command").Command[];
2
- export default _default;
@@ -1,13 +0,0 @@
1
- "use strict";
2
- var __importDefault = (this && this.__importDefault) || function (mod) {
3
- return (mod && mod.__esModule) ? mod : { "default": mod };
4
- };
5
- Object.defineProperty(exports, "__esModule", { value: true });
6
- var api_1 = __importDefault(require("./api"));
7
- var migration_1 = __importDefault(require("./migration"));
8
- var queue_1 = __importDefault(require("./queue"));
9
- exports.default = [
10
- api_1.default,
11
- migration_1.default,
12
- queue_1.default,
13
- ];
@@ -1,9 +0,0 @@
1
- import api from './api'
2
- import migration from './migration'
3
- import queue from './queue'
4
-
5
- export default [
6
- api,
7
- migration,
8
- queue,
9
- ]
@@ -1,3 +0,0 @@
1
- import type { Command } from '../command';
2
- declare const command: Command;
3
- export default command;