create-expresss 1.0.0

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 (3591) hide show
  1. package/bin/cli.js +102 -0
  2. package/package.json +21 -0
  3. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/README.md +72 -0
  4. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/.env +6 -0
  5. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/.env.example +6 -0
  6. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/config/db.js +13 -0
  7. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/middleware/auth.js +17 -0
  8. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/.bin/mime +16 -0
  9. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/.bin/mime.cmd +17 -0
  10. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/.bin/mime.ps1 +28 -0
  11. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/.bin/semver +16 -0
  12. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/.bin/semver.cmd +17 -0
  13. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/.bin/semver.ps1 +28 -0
  14. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/.package-lock.json +1118 -0
  15. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/@types/node/LICENSE +21 -0
  16. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/@types/node/README.md +15 -0
  17. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/@types/node/assert/strict.d.ts +59 -0
  18. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/@types/node/assert.d.ts +950 -0
  19. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/@types/node/async_hooks.d.ts +711 -0
  20. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/@types/node/buffer.buffer.d.ts +466 -0
  21. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/@types/node/buffer.d.ts +1765 -0
  22. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/@types/node/child_process.d.ts +1366 -0
  23. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/@types/node/cluster.d.ts +432 -0
  24. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/@types/node/compatibility/iterators.d.ts +21 -0
  25. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/@types/node/console.d.ts +93 -0
  26. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/@types/node/constants.d.ts +14 -0
  27. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/@types/node/crypto.d.ts +4058 -0
  28. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/@types/node/dgram.d.ts +537 -0
  29. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/@types/node/diagnostics_channel.d.ts +552 -0
  30. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/@types/node/dns/promises.d.ts +497 -0
  31. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/@types/node/dns.d.ts +876 -0
  32. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/@types/node/domain.d.ts +150 -0
  33. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/@types/node/events.d.ts +1008 -0
  34. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/@types/node/fs/promises.d.ts +1468 -0
  35. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/@types/node/fs.d.ts +4780 -0
  36. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/@types/node/globals.d.ts +150 -0
  37. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/@types/node/globals.typedarray.d.ts +101 -0
  38. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/@types/node/http.d.ts +2147 -0
  39. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/@types/node/http2.d.ts +2485 -0
  40. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/@types/node/https.d.ts +400 -0
  41. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/@types/node/index.d.ts +117 -0
  42. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/@types/node/inspector/promises.d.ts +35 -0
  43. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/@types/node/inspector.d.ts +264 -0
  44. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/@types/node/inspector.generated.d.ts +4406 -0
  45. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/@types/node/module.d.ts +755 -0
  46. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/@types/node/net.d.ts +970 -0
  47. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/@types/node/os.d.ts +498 -0
  48. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/@types/node/package.json +155 -0
  49. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/@types/node/path/posix.d.ts +8 -0
  50. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/@types/node/path/win32.d.ts +8 -0
  51. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/@types/node/path.d.ts +178 -0
  52. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/@types/node/perf_hooks.d.ts +612 -0
  53. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/@types/node/process.d.ts +2204 -0
  54. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/@types/node/punycode.d.ts +89 -0
  55. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/@types/node/querystring.d.ts +139 -0
  56. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/@types/node/quic.d.ts +897 -0
  57. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/@types/node/readline/promises.d.ts +158 -0
  58. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/@types/node/readline.d.ts +507 -0
  59. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/@types/node/repl.d.ts +420 -0
  60. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/@types/node/sea.d.ts +47 -0
  61. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/@types/node/sqlite.d.ts +1068 -0
  62. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/@types/node/stream/consumers.d.ts +114 -0
  63. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/@types/node/stream/iter.d.ts +301 -0
  64. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/@types/node/stream/promises.d.ts +211 -0
  65. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/@types/node/stream/web.d.ts +300 -0
  66. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/@types/node/stream.d.ts +1774 -0
  67. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/@types/node/string_decoder.d.ts +27 -0
  68. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/@types/node/test/reporters.d.ts +59 -0
  69. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/@types/node/test.d.ts +2279 -0
  70. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/@types/node/timers/promises.d.ts +93 -0
  71. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/@types/node/timers.d.ts +149 -0
  72. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/@types/node/tls.d.ts +1193 -0
  73. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/@types/node/trace_events.d.ts +103 -0
  74. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/@types/node/ts5.6/buffer.buffer.d.ts +462 -0
  75. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/@types/node/ts5.6/compatibility/float16array.d.ts +71 -0
  76. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/@types/node/ts5.6/globals.typedarray.d.ts +36 -0
  77. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/@types/node/ts5.6/index.d.ts +119 -0
  78. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/@types/node/ts5.7/compatibility/float16array.d.ts +72 -0
  79. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/@types/node/ts5.7/index.d.ts +119 -0
  80. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/@types/node/tty.d.ts +225 -0
  81. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/@types/node/url.d.ts +556 -0
  82. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/@types/node/util/types.d.ts +558 -0
  83. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/@types/node/util.d.ts +1677 -0
  84. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/@types/node/v8.d.ts +980 -0
  85. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/@types/node/vm.d.ts +1136 -0
  86. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/@types/node/wasi.d.ts +131 -0
  87. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/@types/node/web-globals/abortcontroller.d.ts +59 -0
  88. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/@types/node/web-globals/blob.d.ts +23 -0
  89. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/@types/node/web-globals/console.d.ts +9 -0
  90. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/@types/node/web-globals/crypto.d.ts +39 -0
  91. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/@types/node/web-globals/domexception.d.ts +68 -0
  92. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/@types/node/web-globals/encoding.d.ts +11 -0
  93. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/@types/node/web-globals/events.d.ts +106 -0
  94. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/@types/node/web-globals/fetch.d.ts +69 -0
  95. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/@types/node/web-globals/importmeta.d.ts +13 -0
  96. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/@types/node/web-globals/messaging.d.ts +23 -0
  97. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/@types/node/web-globals/navigator.d.ts +25 -0
  98. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/@types/node/web-globals/performance.d.ts +45 -0
  99. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/@types/node/web-globals/storage.d.ts +24 -0
  100. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/@types/node/web-globals/streams.d.ts +115 -0
  101. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/@types/node/web-globals/timers.d.ts +44 -0
  102. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/@types/node/web-globals/url.d.ts +24 -0
  103. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/@types/node/worker_threads.d.ts +671 -0
  104. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/@types/node/zlib/iter.d.ts +131 -0
  105. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/@types/node/zlib.d.ts +589 -0
  106. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/accepts/HISTORY.md +243 -0
  107. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/accepts/LICENSE +23 -0
  108. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/accepts/README.md +140 -0
  109. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/accepts/index.js +238 -0
  110. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/accepts/package.json +47 -0
  111. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/array-flatten/LICENSE +21 -0
  112. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/array-flatten/README.md +43 -0
  113. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/array-flatten/array-flatten.js +64 -0
  114. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/array-flatten/package.json +39 -0
  115. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/aws-ssl-profiles/LICENSE +19 -0
  116. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/aws-ssl-profiles/README.md +146 -0
  117. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/aws-ssl-profiles/lib/@types/profiles.d.ts +4 -0
  118. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/aws-ssl-profiles/lib/@types/profiles.js +2 -0
  119. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/aws-ssl-profiles/lib/index.d.ts +8 -0
  120. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/aws-ssl-profiles/lib/index.js +13 -0
  121. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/aws-ssl-profiles/lib/profiles/ca/defaults.d.ts +9 -0
  122. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/aws-ssl-profiles/lib/profiles/ca/defaults.js +2888 -0
  123. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/aws-ssl-profiles/lib/profiles/ca/proxies.d.ts +8 -0
  124. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/aws-ssl-profiles/lib/profiles/ca/proxies.js +111 -0
  125. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/aws-ssl-profiles/package.json +52 -0
  126. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/bcryptjs/.travis.yml +18 -0
  127. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/bcryptjs/.vscode/settings.json +3 -0
  128. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/bcryptjs/LICENSE +50 -0
  129. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/bcryptjs/README.md +251 -0
  130. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/bcryptjs/bin/bcrypt +25 -0
  131. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/bcryptjs/bower.json +22 -0
  132. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/bcryptjs/dist/README.md +15 -0
  133. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/bcryptjs/dist/bcrypt.js +1379 -0
  134. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/bcryptjs/dist/bcrypt.min.js +48 -0
  135. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/bcryptjs/dist/bcrypt.min.js.gz +0 -0
  136. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/bcryptjs/dist/bcrypt.min.map +8 -0
  137. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/bcryptjs/externs/bcrypt.js +91 -0
  138. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/bcryptjs/externs/minimal-env.js +98 -0
  139. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/bcryptjs/index.js +29 -0
  140. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/bcryptjs/package.json +47 -0
  141. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/bcryptjs/scripts/build.js +37 -0
  142. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/bcryptjs/src/bcrypt/impl.js +669 -0
  143. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/bcryptjs/src/bcrypt/prng/README.md +5 -0
  144. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/bcryptjs/src/bcrypt/prng/accum.js +133 -0
  145. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/bcryptjs/src/bcrypt/prng/isaac.js +140 -0
  146. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/bcryptjs/src/bcrypt/util/base64.js +115 -0
  147. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/bcryptjs/src/bcrypt/util.js +33 -0
  148. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/bcryptjs/src/bcrypt.js +327 -0
  149. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/bcryptjs/src/bower.json +22 -0
  150. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/bcryptjs/src/wrap.js +50 -0
  151. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/bcryptjs/tests/quickbrown.txt +150 -0
  152. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/bcryptjs/tests/suite.js +197 -0
  153. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/body-parser/HISTORY.md +686 -0
  154. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/body-parser/LICENSE +23 -0
  155. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/body-parser/README.md +476 -0
  156. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/body-parser/index.js +156 -0
  157. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/body-parser/lib/read.js +205 -0
  158. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/body-parser/lib/types/json.js +243 -0
  159. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/body-parser/lib/types/raw.js +101 -0
  160. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/body-parser/lib/types/text.js +121 -0
  161. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/body-parser/lib/types/urlencoded.js +299 -0
  162. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/body-parser/package.json +55 -0
  163. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/buffer-equal-constant-time/.travis.yml +4 -0
  164. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/buffer-equal-constant-time/LICENSE.txt +12 -0
  165. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/buffer-equal-constant-time/README.md +50 -0
  166. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/buffer-equal-constant-time/index.js +41 -0
  167. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/buffer-equal-constant-time/package.json +21 -0
  168. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/buffer-equal-constant-time/test.js +42 -0
  169. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/bytes/History.md +97 -0
  170. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/bytes/LICENSE +23 -0
  171. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/bytes/Readme.md +152 -0
  172. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/bytes/index.js +170 -0
  173. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/bytes/package.json +42 -0
  174. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/call-bind-apply-helpers/.eslintrc +17 -0
  175. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/call-bind-apply-helpers/.github/FUNDING.yml +12 -0
  176. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/call-bind-apply-helpers/.nycrc +9 -0
  177. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/call-bind-apply-helpers/CHANGELOG.md +30 -0
  178. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/call-bind-apply-helpers/LICENSE +21 -0
  179. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/call-bind-apply-helpers/README.md +62 -0
  180. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/call-bind-apply-helpers/actualApply.d.ts +1 -0
  181. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/call-bind-apply-helpers/actualApply.js +10 -0
  182. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/call-bind-apply-helpers/applyBind.d.ts +19 -0
  183. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/call-bind-apply-helpers/applyBind.js +10 -0
  184. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/call-bind-apply-helpers/functionApply.d.ts +1 -0
  185. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/call-bind-apply-helpers/functionApply.js +4 -0
  186. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/call-bind-apply-helpers/functionCall.d.ts +1 -0
  187. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/call-bind-apply-helpers/functionCall.js +4 -0
  188. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/call-bind-apply-helpers/index.d.ts +64 -0
  189. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/call-bind-apply-helpers/index.js +15 -0
  190. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/call-bind-apply-helpers/package.json +85 -0
  191. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/call-bind-apply-helpers/reflectApply.d.ts +3 -0
  192. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/call-bind-apply-helpers/reflectApply.js +4 -0
  193. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/call-bind-apply-helpers/test/index.js +63 -0
  194. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/call-bind-apply-helpers/tsconfig.json +9 -0
  195. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/call-bound/.eslintrc +13 -0
  196. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/call-bound/.github/FUNDING.yml +12 -0
  197. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/call-bound/.nycrc +9 -0
  198. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/call-bound/CHANGELOG.md +42 -0
  199. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/call-bound/LICENSE +21 -0
  200. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/call-bound/README.md +53 -0
  201. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/call-bound/index.d.ts +94 -0
  202. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/call-bound/index.js +19 -0
  203. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/call-bound/package.json +99 -0
  204. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/call-bound/test/index.js +61 -0
  205. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/call-bound/tsconfig.json +10 -0
  206. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/content-disposition/HISTORY.md +60 -0
  207. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/content-disposition/LICENSE +22 -0
  208. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/content-disposition/README.md +142 -0
  209. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/content-disposition/index.js +458 -0
  210. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/content-disposition/package.json +44 -0
  211. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/content-type/HISTORY.md +29 -0
  212. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/content-type/LICENSE +22 -0
  213. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/content-type/README.md +94 -0
  214. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/content-type/index.js +225 -0
  215. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/content-type/package.json +42 -0
  216. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/cookie/LICENSE +24 -0
  217. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/cookie/README.md +317 -0
  218. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/cookie/SECURITY.md +25 -0
  219. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/cookie/index.js +335 -0
  220. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/cookie/package.json +44 -0
  221. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/cookie-signature/History.md +42 -0
  222. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/cookie-signature/Readme.md +42 -0
  223. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/cookie-signature/index.js +51 -0
  224. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/cookie-signature/package.json +18 -0
  225. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/cors/LICENSE +22 -0
  226. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/cors/README.md +277 -0
  227. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/cors/lib/index.js +238 -0
  228. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/cors/package.json +42 -0
  229. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/debug/.coveralls.yml +1 -0
  230. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/debug/.eslintrc +11 -0
  231. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/debug/.travis.yml +14 -0
  232. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/debug/CHANGELOG.md +362 -0
  233. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/debug/LICENSE +19 -0
  234. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/debug/Makefile +50 -0
  235. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/debug/README.md +312 -0
  236. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/debug/component.json +19 -0
  237. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/debug/karma.conf.js +70 -0
  238. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/debug/node.js +1 -0
  239. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/debug/package.json +49 -0
  240. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/debug/src/browser.js +185 -0
  241. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/debug/src/debug.js +202 -0
  242. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/debug/src/index.js +10 -0
  243. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/debug/src/inspector-log.js +15 -0
  244. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/debug/src/node.js +248 -0
  245. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/denque/CHANGELOG.md +29 -0
  246. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/denque/LICENSE +201 -0
  247. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/denque/README.md +77 -0
  248. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/denque/index.d.ts +47 -0
  249. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/denque/index.js +481 -0
  250. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/denque/package.json +58 -0
  251. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/depd/History.md +103 -0
  252. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/depd/LICENSE +22 -0
  253. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/depd/Readme.md +280 -0
  254. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/depd/index.js +538 -0
  255. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/depd/lib/browser/index.js +77 -0
  256. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/depd/package.json +45 -0
  257. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/destroy/LICENSE +23 -0
  258. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/destroy/README.md +63 -0
  259. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/destroy/index.js +209 -0
  260. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/destroy/package.json +48 -0
  261. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/dotenv/CHANGELOG.md +520 -0
  262. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/dotenv/LICENSE +23 -0
  263. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/dotenv/README-es.md +411 -0
  264. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/dotenv/README.md +645 -0
  265. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/dotenv/SECURITY.md +1 -0
  266. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/dotenv/config.d.ts +1 -0
  267. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/dotenv/config.js +9 -0
  268. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/dotenv/lib/cli-options.js +17 -0
  269. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/dotenv/lib/env-options.js +28 -0
  270. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/dotenv/lib/main.d.ts +162 -0
  271. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/dotenv/lib/main.js +386 -0
  272. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/dotenv/package.json +62 -0
  273. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/dunder-proto/.eslintrc +5 -0
  274. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/dunder-proto/.github/FUNDING.yml +12 -0
  275. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/dunder-proto/.nycrc +13 -0
  276. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/dunder-proto/CHANGELOG.md +24 -0
  277. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/dunder-proto/LICENSE +21 -0
  278. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/dunder-proto/README.md +54 -0
  279. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/dunder-proto/get.d.ts +5 -0
  280. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/dunder-proto/get.js +30 -0
  281. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/dunder-proto/package.json +76 -0
  282. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/dunder-proto/set.d.ts +5 -0
  283. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/dunder-proto/set.js +35 -0
  284. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/dunder-proto/test/get.js +34 -0
  285. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/dunder-proto/test/index.js +4 -0
  286. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/dunder-proto/test/set.js +50 -0
  287. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/dunder-proto/tsconfig.json +9 -0
  288. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/ecdsa-sig-formatter/CODEOWNERS +1 -0
  289. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/ecdsa-sig-formatter/LICENSE +201 -0
  290. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/ecdsa-sig-formatter/README.md +65 -0
  291. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/ecdsa-sig-formatter/package.json +46 -0
  292. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/ecdsa-sig-formatter/src/ecdsa-sig-formatter.d.ts +17 -0
  293. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/ecdsa-sig-formatter/src/ecdsa-sig-formatter.js +187 -0
  294. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/ecdsa-sig-formatter/src/param-bytes-for-alg.js +23 -0
  295. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/ee-first/LICENSE +22 -0
  296. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/ee-first/README.md +80 -0
  297. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/ee-first/index.js +95 -0
  298. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/ee-first/package.json +29 -0
  299. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/encodeurl/LICENSE +22 -0
  300. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/encodeurl/README.md +109 -0
  301. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/encodeurl/index.js +60 -0
  302. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/encodeurl/package.json +40 -0
  303. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/es-define-property/.eslintrc +13 -0
  304. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/es-define-property/.github/FUNDING.yml +12 -0
  305. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/es-define-property/.nycrc +9 -0
  306. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/es-define-property/CHANGELOG.md +29 -0
  307. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/es-define-property/LICENSE +21 -0
  308. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/es-define-property/README.md +49 -0
  309. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/es-define-property/index.d.ts +3 -0
  310. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/es-define-property/index.js +14 -0
  311. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/es-define-property/package.json +81 -0
  312. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/es-define-property/test/index.js +56 -0
  313. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/es-define-property/tsconfig.json +10 -0
  314. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/es-errors/.eslintrc +5 -0
  315. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/es-errors/.github/FUNDING.yml +12 -0
  316. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/es-errors/CHANGELOG.md +40 -0
  317. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/es-errors/LICENSE +21 -0
  318. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/es-errors/README.md +55 -0
  319. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/es-errors/eval.d.ts +3 -0
  320. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/es-errors/eval.js +4 -0
  321. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/es-errors/index.d.ts +3 -0
  322. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/es-errors/index.js +4 -0
  323. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/es-errors/package.json +80 -0
  324. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/es-errors/range.d.ts +3 -0
  325. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/es-errors/range.js +4 -0
  326. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/es-errors/ref.d.ts +3 -0
  327. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/es-errors/ref.js +4 -0
  328. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/es-errors/syntax.d.ts +3 -0
  329. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/es-errors/syntax.js +4 -0
  330. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/es-errors/test/index.js +19 -0
  331. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/es-errors/tsconfig.json +49 -0
  332. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/es-errors/type.d.ts +3 -0
  333. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/es-errors/type.js +4 -0
  334. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/es-errors/uri.d.ts +3 -0
  335. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/es-errors/uri.js +4 -0
  336. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/es-object-atoms/.eslintrc +16 -0
  337. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/es-object-atoms/.github/FUNDING.yml +12 -0
  338. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/es-object-atoms/CHANGELOG.md +44 -0
  339. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/es-object-atoms/LICENSE +21 -0
  340. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/es-object-atoms/README.md +63 -0
  341. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/es-object-atoms/RequireObjectCoercible.d.ts +3 -0
  342. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/es-object-atoms/RequireObjectCoercible.js +11 -0
  343. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/es-object-atoms/ToObject.d.ts +7 -0
  344. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/es-object-atoms/ToObject.js +10 -0
  345. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/es-object-atoms/index.d.ts +3 -0
  346. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/es-object-atoms/index.js +4 -0
  347. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/es-object-atoms/isObject.d.ts +3 -0
  348. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/es-object-atoms/isObject.js +6 -0
  349. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/es-object-atoms/package.json +79 -0
  350. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/es-object-atoms/test/index.js +38 -0
  351. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/es-object-atoms/tsconfig.json +7 -0
  352. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/escape-html/LICENSE +24 -0
  353. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/escape-html/Readme.md +43 -0
  354. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/escape-html/index.js +78 -0
  355. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/escape-html/package.json +24 -0
  356. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/etag/HISTORY.md +83 -0
  357. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/etag/LICENSE +22 -0
  358. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/etag/README.md +159 -0
  359. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/etag/index.js +131 -0
  360. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/etag/package.json +47 -0
  361. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/express/History.md +3676 -0
  362. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/express/LICENSE +24 -0
  363. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/express/Readme.md +260 -0
  364. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/express/index.js +11 -0
  365. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/express/lib/application.js +661 -0
  366. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/express/lib/express.js +116 -0
  367. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/express/lib/middleware/init.js +43 -0
  368. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/express/lib/middleware/query.js +47 -0
  369. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/express/lib/request.js +525 -0
  370. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/express/lib/response.js +1179 -0
  371. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/express/lib/router/index.js +673 -0
  372. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/express/lib/router/layer.js +181 -0
  373. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/express/lib/router/route.js +230 -0
  374. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/express/lib/utils.js +304 -0
  375. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/express/lib/view.js +182 -0
  376. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/express/package.json +102 -0
  377. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/finalhandler/HISTORY.md +216 -0
  378. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/finalhandler/LICENSE +22 -0
  379. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/finalhandler/README.md +147 -0
  380. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/finalhandler/SECURITY.md +25 -0
  381. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/finalhandler/index.js +341 -0
  382. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/finalhandler/package.json +47 -0
  383. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/forwarded/HISTORY.md +21 -0
  384. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/forwarded/LICENSE +22 -0
  385. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/forwarded/README.md +57 -0
  386. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/forwarded/index.js +90 -0
  387. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/forwarded/package.json +45 -0
  388. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/fresh/HISTORY.md +70 -0
  389. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/fresh/LICENSE +23 -0
  390. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/fresh/README.md +119 -0
  391. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/fresh/index.js +137 -0
  392. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/fresh/package.json +46 -0
  393. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/function-bind/.eslintrc +21 -0
  394. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/function-bind/.github/FUNDING.yml +12 -0
  395. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/function-bind/.github/SECURITY.md +3 -0
  396. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/function-bind/.nycrc +13 -0
  397. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/function-bind/CHANGELOG.md +136 -0
  398. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/function-bind/LICENSE +20 -0
  399. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/function-bind/README.md +46 -0
  400. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/function-bind/implementation.js +84 -0
  401. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/function-bind/index.js +5 -0
  402. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/function-bind/package.json +87 -0
  403. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/function-bind/test/.eslintrc +9 -0
  404. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/function-bind/test/index.js +252 -0
  405. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/generate-function/.travis.yml +3 -0
  406. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/generate-function/LICENSE +21 -0
  407. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/generate-function/README.md +89 -0
  408. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/generate-function/example.js +27 -0
  409. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/generate-function/index.js +181 -0
  410. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/generate-function/package.json +32 -0
  411. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/generate-function/test.js +49 -0
  412. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/get-intrinsic/.eslintrc +42 -0
  413. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/get-intrinsic/.github/FUNDING.yml +12 -0
  414. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/get-intrinsic/.nycrc +9 -0
  415. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/get-intrinsic/CHANGELOG.md +186 -0
  416. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/get-intrinsic/LICENSE +21 -0
  417. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/get-intrinsic/README.md +71 -0
  418. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/get-intrinsic/index.js +378 -0
  419. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/get-intrinsic/package.json +97 -0
  420. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/get-intrinsic/test/GetIntrinsic.js +274 -0
  421. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/get-proto/.eslintrc +10 -0
  422. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/get-proto/.github/FUNDING.yml +12 -0
  423. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/get-proto/.nycrc +9 -0
  424. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/get-proto/CHANGELOG.md +21 -0
  425. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/get-proto/LICENSE +21 -0
  426. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/get-proto/Object.getPrototypeOf.d.ts +5 -0
  427. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/get-proto/Object.getPrototypeOf.js +6 -0
  428. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/get-proto/README.md +50 -0
  429. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/get-proto/Reflect.getPrototypeOf.d.ts +3 -0
  430. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/get-proto/Reflect.getPrototypeOf.js +4 -0
  431. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/get-proto/index.d.ts +5 -0
  432. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/get-proto/index.js +27 -0
  433. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/get-proto/package.json +81 -0
  434. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/get-proto/test/index.js +68 -0
  435. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/get-proto/tsconfig.json +9 -0
  436. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/gopd/.eslintrc +16 -0
  437. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/gopd/.github/FUNDING.yml +12 -0
  438. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/gopd/CHANGELOG.md +45 -0
  439. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/gopd/LICENSE +21 -0
  440. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/gopd/README.md +40 -0
  441. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/gopd/gOPD.d.ts +1 -0
  442. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/gopd/gOPD.js +4 -0
  443. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/gopd/index.d.ts +5 -0
  444. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/gopd/index.js +15 -0
  445. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/gopd/package.json +77 -0
  446. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/gopd/test/index.js +36 -0
  447. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/gopd/tsconfig.json +9 -0
  448. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/has-symbols/.eslintrc +11 -0
  449. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/has-symbols/.github/FUNDING.yml +12 -0
  450. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/has-symbols/.nycrc +9 -0
  451. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/has-symbols/CHANGELOG.md +91 -0
  452. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/has-symbols/LICENSE +21 -0
  453. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/has-symbols/README.md +46 -0
  454. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/has-symbols/index.d.ts +3 -0
  455. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/has-symbols/index.js +14 -0
  456. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/has-symbols/package.json +111 -0
  457. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/has-symbols/shams.d.ts +3 -0
  458. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/has-symbols/shams.js +45 -0
  459. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/has-symbols/test/index.js +22 -0
  460. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/has-symbols/test/shams/core-js.js +29 -0
  461. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/has-symbols/test/shams/get-own-property-symbols.js +29 -0
  462. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/has-symbols/test/tests.js +58 -0
  463. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/has-symbols/tsconfig.json +10 -0
  464. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/hasown/.github/FUNDING.yml +12 -0
  465. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/hasown/.nycrc +13 -0
  466. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/hasown/CHANGELOG.md +58 -0
  467. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/hasown/LICENSE +21 -0
  468. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/hasown/README.md +40 -0
  469. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/hasown/eslint.config.mjs +6 -0
  470. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/hasown/index.d.ts +3 -0
  471. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/hasown/index.js +8 -0
  472. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/hasown/package.json +91 -0
  473. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/hasown/tsconfig.json +6 -0
  474. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/http-errors/HISTORY.md +186 -0
  475. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/http-errors/LICENSE +23 -0
  476. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/http-errors/README.md +169 -0
  477. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/http-errors/index.js +290 -0
  478. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/http-errors/package.json +54 -0
  479. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/iconv-lite/Changelog.md +162 -0
  480. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/iconv-lite/LICENSE +21 -0
  481. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/iconv-lite/README.md +156 -0
  482. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/iconv-lite/encodings/dbcs-codec.js +555 -0
  483. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/iconv-lite/encodings/dbcs-data.js +176 -0
  484. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/iconv-lite/encodings/index.js +22 -0
  485. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/iconv-lite/encodings/internal.js +188 -0
  486. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/iconv-lite/encodings/sbcs-codec.js +72 -0
  487. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/iconv-lite/encodings/sbcs-data-generated.js +451 -0
  488. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/iconv-lite/encodings/sbcs-data.js +174 -0
  489. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/iconv-lite/encodings/tables/big5-added.json +122 -0
  490. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/iconv-lite/encodings/tables/cp936.json +264 -0
  491. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/iconv-lite/encodings/tables/cp949.json +273 -0
  492. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/iconv-lite/encodings/tables/cp950.json +177 -0
  493. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/iconv-lite/encodings/tables/eucjp.json +182 -0
  494. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/iconv-lite/encodings/tables/gb18030-ranges.json +1 -0
  495. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/iconv-lite/encodings/tables/gbk-added.json +55 -0
  496. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/iconv-lite/encodings/tables/shiftjis.json +125 -0
  497. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/iconv-lite/encodings/utf16.js +177 -0
  498. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/iconv-lite/encodings/utf7.js +290 -0
  499. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/iconv-lite/lib/bom-handling.js +52 -0
  500. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/iconv-lite/lib/extend-node.js +217 -0
  501. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/iconv-lite/lib/index.d.ts +24 -0
  502. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/iconv-lite/lib/index.js +153 -0
  503. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/iconv-lite/lib/streams.js +121 -0
  504. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/iconv-lite/package.json +46 -0
  505. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/inherits/LICENSE +16 -0
  506. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/inherits/README.md +42 -0
  507. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/inherits/inherits.js +9 -0
  508. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/inherits/inherits_browser.js +27 -0
  509. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/inherits/package.json +29 -0
  510. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/ipaddr.js/LICENSE +19 -0
  511. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/ipaddr.js/README.md +233 -0
  512. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/ipaddr.js/ipaddr.min.js +1 -0
  513. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/ipaddr.js/lib/ipaddr.js +673 -0
  514. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/ipaddr.js/lib/ipaddr.js.d.ts +68 -0
  515. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/ipaddr.js/package.json +35 -0
  516. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/is-property/LICENSE +22 -0
  517. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/is-property/README.md +28 -0
  518. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/is-property/is-property.js +5 -0
  519. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/is-property/package.json +36 -0
  520. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/jsonwebtoken/LICENSE +21 -0
  521. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/jsonwebtoken/README.md +396 -0
  522. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/jsonwebtoken/decode.js +30 -0
  523. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/jsonwebtoken/index.js +8 -0
  524. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/jsonwebtoken/lib/JsonWebTokenError.js +14 -0
  525. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/jsonwebtoken/lib/NotBeforeError.js +13 -0
  526. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/jsonwebtoken/lib/TokenExpiredError.js +13 -0
  527. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/jsonwebtoken/lib/asymmetricKeyDetailsSupported.js +3 -0
  528. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/jsonwebtoken/lib/psSupported.js +3 -0
  529. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/jsonwebtoken/lib/rsaPssKeyDetailsSupported.js +3 -0
  530. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/jsonwebtoken/lib/timespan.js +18 -0
  531. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/jsonwebtoken/lib/validateAsymmetricKey.js +66 -0
  532. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/jsonwebtoken/node_modules/ms/index.js +162 -0
  533. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/jsonwebtoken/node_modules/ms/license.md +21 -0
  534. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/jsonwebtoken/node_modules/ms/package.json +38 -0
  535. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/jsonwebtoken/node_modules/ms/readme.md +59 -0
  536. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/jsonwebtoken/package.json +70 -0
  537. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/jsonwebtoken/sign.js +253 -0
  538. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/jsonwebtoken/verify.js +263 -0
  539. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/jwa/LICENSE +17 -0
  540. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/jwa/README.md +150 -0
  541. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/jwa/index.js +266 -0
  542. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/jwa/opslevel.yml +6 -0
  543. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/jwa/package.json +37 -0
  544. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/jws/CHANGELOG.md +56 -0
  545. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/jws/LICENSE +17 -0
  546. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/jws/index.js +22 -0
  547. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/jws/lib/data-stream.js +55 -0
  548. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/jws/lib/sign-stream.js +83 -0
  549. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/jws/lib/tostring.js +10 -0
  550. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/jws/lib/verify-stream.js +125 -0
  551. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/jws/opslevel.yml +6 -0
  552. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/jws/package.json +34 -0
  553. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/jws/readme.md +255 -0
  554. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/lodash.includes/LICENSE +47 -0
  555. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/lodash.includes/README.md +18 -0
  556. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/lodash.includes/index.js +745 -0
  557. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/lodash.includes/package.json +17 -0
  558. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/lodash.isboolean/LICENSE +22 -0
  559. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/lodash.isboolean/README.md +18 -0
  560. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/lodash.isboolean/index.js +70 -0
  561. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/lodash.isboolean/package.json +17 -0
  562. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/lodash.isinteger/LICENSE +47 -0
  563. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/lodash.isinteger/README.md +18 -0
  564. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/lodash.isinteger/index.js +265 -0
  565. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/lodash.isinteger/package.json +17 -0
  566. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/lodash.isnumber/LICENSE +22 -0
  567. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/lodash.isnumber/README.md +18 -0
  568. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/lodash.isnumber/index.js +79 -0
  569. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/lodash.isnumber/package.json +17 -0
  570. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/lodash.isplainobject/LICENSE +47 -0
  571. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/lodash.isplainobject/README.md +18 -0
  572. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/lodash.isplainobject/index.js +139 -0
  573. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/lodash.isplainobject/package.json +17 -0
  574. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/lodash.isstring/LICENSE +22 -0
  575. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/lodash.isstring/README.md +18 -0
  576. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/lodash.isstring/index.js +95 -0
  577. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/lodash.isstring/package.json +17 -0
  578. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/lodash.once/LICENSE +47 -0
  579. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/lodash.once/README.md +18 -0
  580. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/lodash.once/index.js +294 -0
  581. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/lodash.once/package.json +17 -0
  582. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/long/LICENSE +202 -0
  583. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/long/README.md +286 -0
  584. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/long/index.d.ts +2 -0
  585. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/long/index.js +1581 -0
  586. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/long/package.json +58 -0
  587. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/long/types.d.ts +474 -0
  588. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/long/umd/index.d.ts +3 -0
  589. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/long/umd/index.js +1622 -0
  590. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/long/umd/package.json +3 -0
  591. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/long/umd/types.d.ts +474 -0
  592. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/lru.min/LICENSE +21 -0
  593. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/lru.min/README.md +392 -0
  594. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/lru.min/browser/lru.min.js +1 -0
  595. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/lru.min/lib/index.d.ts +38 -0
  596. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/lru.min/lib/index.js +248 -0
  597. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/lru.min/lib/index.mjs +227 -0
  598. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/lru.min/package.json +87 -0
  599. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/math-intrinsics/.eslintrc +16 -0
  600. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/math-intrinsics/.github/FUNDING.yml +12 -0
  601. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/math-intrinsics/CHANGELOG.md +24 -0
  602. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/math-intrinsics/LICENSE +21 -0
  603. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/math-intrinsics/README.md +50 -0
  604. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/math-intrinsics/abs.d.ts +1 -0
  605. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/math-intrinsics/abs.js +4 -0
  606. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/math-intrinsics/constants/maxArrayLength.d.ts +3 -0
  607. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/math-intrinsics/constants/maxArrayLength.js +4 -0
  608. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/math-intrinsics/constants/maxSafeInteger.d.ts +3 -0
  609. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/math-intrinsics/constants/maxSafeInteger.js +5 -0
  610. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/math-intrinsics/constants/maxValue.d.ts +3 -0
  611. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/math-intrinsics/constants/maxValue.js +5 -0
  612. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/math-intrinsics/floor.d.ts +1 -0
  613. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/math-intrinsics/floor.js +4 -0
  614. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/math-intrinsics/isFinite.d.ts +3 -0
  615. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/math-intrinsics/isFinite.js +12 -0
  616. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/math-intrinsics/isInteger.d.ts +3 -0
  617. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/math-intrinsics/isInteger.js +16 -0
  618. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/math-intrinsics/isNaN.d.ts +1 -0
  619. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/math-intrinsics/isNaN.js +6 -0
  620. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/math-intrinsics/isNegativeZero.d.ts +3 -0
  621. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/math-intrinsics/isNegativeZero.js +6 -0
  622. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/math-intrinsics/max.d.ts +1 -0
  623. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/math-intrinsics/max.js +4 -0
  624. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/math-intrinsics/min.d.ts +1 -0
  625. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/math-intrinsics/min.js +4 -0
  626. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/math-intrinsics/mod.d.ts +3 -0
  627. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/math-intrinsics/mod.js +9 -0
  628. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/math-intrinsics/package.json +86 -0
  629. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/math-intrinsics/pow.d.ts +1 -0
  630. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/math-intrinsics/pow.js +4 -0
  631. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/math-intrinsics/round.d.ts +1 -0
  632. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/math-intrinsics/round.js +4 -0
  633. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/math-intrinsics/sign.d.ts +3 -0
  634. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/math-intrinsics/sign.js +11 -0
  635. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/math-intrinsics/test/index.js +192 -0
  636. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/math-intrinsics/tsconfig.json +3 -0
  637. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/media-typer/HISTORY.md +22 -0
  638. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/media-typer/LICENSE +22 -0
  639. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/media-typer/README.md +81 -0
  640. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/media-typer/index.js +270 -0
  641. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/media-typer/package.json +26 -0
  642. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/merge-descriptors/HISTORY.md +21 -0
  643. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/merge-descriptors/LICENSE +23 -0
  644. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/merge-descriptors/README.md +49 -0
  645. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/merge-descriptors/index.js +60 -0
  646. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/merge-descriptors/package.json +39 -0
  647. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/methods/HISTORY.md +29 -0
  648. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/methods/LICENSE +24 -0
  649. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/methods/README.md +51 -0
  650. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/methods/index.js +69 -0
  651. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/methods/package.json +36 -0
  652. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mime/CHANGELOG.md +164 -0
  653. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mime/LICENSE +21 -0
  654. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mime/README.md +90 -0
  655. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mime/cli.js +8 -0
  656. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mime/mime.js +108 -0
  657. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mime/package.json +44 -0
  658. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mime/src/build.js +53 -0
  659. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mime/src/test.js +60 -0
  660. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mime/types.json +1 -0
  661. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mime-db/HISTORY.md +507 -0
  662. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mime-db/LICENSE +23 -0
  663. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mime-db/README.md +100 -0
  664. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mime-db/db.json +8519 -0
  665. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mime-db/index.js +12 -0
  666. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mime-db/package.json +60 -0
  667. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mime-types/HISTORY.md +397 -0
  668. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mime-types/LICENSE +23 -0
  669. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mime-types/README.md +113 -0
  670. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mime-types/index.js +188 -0
  671. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mime-types/package.json +44 -0
  672. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/ms/index.js +152 -0
  673. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/ms/license.md +21 -0
  674. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/ms/package.json +37 -0
  675. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/ms/readme.md +51 -0
  676. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/License +19 -0
  677. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/README.md +114 -0
  678. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/index.d.ts +1 -0
  679. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/index.js +77 -0
  680. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/auth_41.js +95 -0
  681. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/auth_plugins/caching_sha2_password.js +115 -0
  682. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/auth_plugins/caching_sha2_password.md +18 -0
  683. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/auth_plugins/index.js +8 -0
  684. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/auth_plugins/mysql_clear_password.js +17 -0
  685. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/auth_plugins/mysql_native_password.js +34 -0
  686. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/auth_plugins/sha256_password.js +74 -0
  687. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/base/connection.js +1139 -0
  688. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/base/pool.js +347 -0
  689. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/commands/auth_switch.js +151 -0
  690. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/commands/binlog_dump.js +109 -0
  691. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/commands/change_user.js +68 -0
  692. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/commands/client_handshake.js +386 -0
  693. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/commands/close_statement.js +18 -0
  694. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/commands/command.js +54 -0
  695. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/commands/execute.js +116 -0
  696. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/commands/index.js +29 -0
  697. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/commands/ping.js +36 -0
  698. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/commands/prepare.js +143 -0
  699. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/commands/query.js +365 -0
  700. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/commands/quit.js +29 -0
  701. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/commands/register_slave.js +27 -0
  702. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/commands/reset_connection.js +29 -0
  703. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/commands/server_handshake.js +205 -0
  704. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/compressed_protocol.js +153 -0
  705. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/connection.js +12 -0
  706. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/connection_config.js +300 -0
  707. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/constants/charset_encodings.js +317 -0
  708. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/constants/charsets.js +317 -0
  709. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/constants/client.js +39 -0
  710. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/constants/commands.js +37 -0
  711. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/constants/cursor.js +9 -0
  712. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/constants/encoding_charset.js +50 -0
  713. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/constants/errors.js +3973 -0
  714. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/constants/field_flags.js +20 -0
  715. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/constants/server_status.js +44 -0
  716. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/constants/session_track.js +11 -0
  717. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/constants/ssl_profiles.js +11 -0
  718. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/constants/types.js +64 -0
  719. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/create_connection.js +10 -0
  720. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/create_pool.js +10 -0
  721. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/create_pool_cluster.js +9 -0
  722. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/helpers.js +83 -0
  723. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/packet_parser.js +195 -0
  724. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/packets/auth_next_factor.js +35 -0
  725. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/packets/auth_switch_request.js +38 -0
  726. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/packets/auth_switch_request_more_data.js +33 -0
  727. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/packets/auth_switch_response.js +30 -0
  728. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/packets/binary_row.js +95 -0
  729. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/packets/binlog_dump.js +33 -0
  730. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/packets/binlog_query_statusvars.js +115 -0
  731. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/packets/change_user.js +97 -0
  732. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/packets/close_statement.js +21 -0
  733. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/packets/column_definition.js +291 -0
  734. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/packets/encode_parameter.js +69 -0
  735. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/packets/execute.js +177 -0
  736. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/packets/handshake.js +112 -0
  737. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/packets/handshake_response.js +173 -0
  738. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/packets/index.js +154 -0
  739. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/packets/packet.js +978 -0
  740. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/packets/prepare_statement.js +27 -0
  741. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/packets/prepared_statement_header.js +16 -0
  742. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/packets/query.js +102 -0
  743. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/packets/register_slave.js +46 -0
  744. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/packets/reset_connection.js +17 -0
  745. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/packets/resultset_header.js +124 -0
  746. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/packets/ssl_request.js +25 -0
  747. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/packets/text_row.js +47 -0
  748. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/parsers/binary_parser.js +235 -0
  749. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/parsers/parser_cache.js +68 -0
  750. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/parsers/static_binary_parser.js +213 -0
  751. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/parsers/static_text_parser.js +152 -0
  752. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/parsers/string.js +50 -0
  753. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/parsers/text_parser.js +214 -0
  754. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/pool.js +12 -0
  755. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/pool_cluster.js +375 -0
  756. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/pool_config.js +34 -0
  757. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/pool_connection.js +81 -0
  758. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/promise/capture_local_err.js +25 -0
  759. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/promise/connection.js +237 -0
  760. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/promise/inherit_events.js +27 -0
  761. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/promise/make_done_cb.js +16 -0
  762. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/promise/pool.js +118 -0
  763. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/promise/pool_cluster.js +59 -0
  764. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/promise/pool_connection.js +19 -0
  765. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/promise/prepared_statement_info.js +35 -0
  766. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/results_stream.js +38 -0
  767. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/server.js +37 -0
  768. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/tracing.js +81 -0
  769. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/node_modules/iconv-lite/LICENSE +21 -0
  770. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/node_modules/iconv-lite/README.md +138 -0
  771. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/node_modules/iconv-lite/encodings/dbcs-codec.js +532 -0
  772. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/node_modules/iconv-lite/encodings/dbcs-data.js +185 -0
  773. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/node_modules/iconv-lite/encodings/index.js +23 -0
  774. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/node_modules/iconv-lite/encodings/internal.js +218 -0
  775. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/node_modules/iconv-lite/encodings/sbcs-codec.js +75 -0
  776. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/node_modules/iconv-lite/encodings/sbcs-data-generated.js +451 -0
  777. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/node_modules/iconv-lite/encodings/sbcs-data.js +178 -0
  778. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/node_modules/iconv-lite/encodings/tables/big5-added.json +122 -0
  779. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/node_modules/iconv-lite/encodings/tables/cp936.json +264 -0
  780. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/node_modules/iconv-lite/encodings/tables/cp949.json +273 -0
  781. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/node_modules/iconv-lite/encodings/tables/cp950.json +177 -0
  782. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/node_modules/iconv-lite/encodings/tables/eucjp.json +182 -0
  783. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/node_modules/iconv-lite/encodings/tables/gb18030-ranges.json +1 -0
  784. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/node_modules/iconv-lite/encodings/tables/gbk-added.json +56 -0
  785. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/node_modules/iconv-lite/encodings/tables/shiftjis.json +125 -0
  786. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/node_modules/iconv-lite/encodings/utf16.js +187 -0
  787. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/node_modules/iconv-lite/encodings/utf32.js +307 -0
  788. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/node_modules/iconv-lite/encodings/utf7.js +283 -0
  789. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/node_modules/iconv-lite/lib/bom-handling.js +48 -0
  790. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/node_modules/iconv-lite/lib/helpers/merge-exports.js +13 -0
  791. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/node_modules/iconv-lite/lib/index.d.ts +129 -0
  792. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/node_modules/iconv-lite/lib/index.js +182 -0
  793. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/node_modules/iconv-lite/lib/streams.js +105 -0
  794. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/node_modules/iconv-lite/package.json +70 -0
  795. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/node_modules/iconv-lite/types/encodings.d.ts +423 -0
  796. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/package.json +95 -0
  797. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/promise.d.ts +141 -0
  798. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/promise.js +209 -0
  799. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/typings/mysql/LICENSE.txt +15 -0
  800. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/typings/mysql/index.d.ts +93 -0
  801. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/typings/mysql/info.txt +1 -0
  802. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/typings/mysql/lib/Auth.d.ts +30 -0
  803. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/typings/mysql/lib/Connection.d.ts +456 -0
  804. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/typings/mysql/lib/Pool.d.ts +78 -0
  805. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/typings/mysql/lib/PoolCluster.d.ts +92 -0
  806. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/typings/mysql/lib/PoolConnection.d.ts +11 -0
  807. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/typings/mysql/lib/Server.d.ts +11 -0
  808. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/typings/mysql/lib/Tracing.d.ts +71 -0
  809. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/typings/mysql/lib/constants/CharsetToEncoding.d.ts +8 -0
  810. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/typings/mysql/lib/constants/Charsets.d.ts +326 -0
  811. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/typings/mysql/lib/constants/Types.d.ts +70 -0
  812. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/typings/mysql/lib/constants/index.d.ts +5 -0
  813. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/typings/mysql/lib/parsers/ParserCache.d.ts +4 -0
  814. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/typings/mysql/lib/parsers/index.d.ts +18 -0
  815. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/typings/mysql/lib/parsers/typeCast.d.ts +54 -0
  816. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/typings/mysql/lib/protocol/packets/Field.d.ts +10 -0
  817. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/typings/mysql/lib/protocol/packets/FieldPacket.d.ts +27 -0
  818. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/typings/mysql/lib/protocol/packets/OkPacket.d.ts +23 -0
  819. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/typings/mysql/lib/protocol/packets/ProcedurePacket.d.ts +13 -0
  820. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/typings/mysql/lib/protocol/packets/ResultSetHeader.d.ts +18 -0
  821. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/typings/mysql/lib/protocol/packets/RowDataPacket.d.ts +9 -0
  822. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/typings/mysql/lib/protocol/packets/index.d.ts +28 -0
  823. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/typings/mysql/lib/protocol/packets/params/ErrorPacketParams.d.ts +6 -0
  824. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/typings/mysql/lib/protocol/packets/params/OkPacketParams.d.ts +9 -0
  825. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/typings/mysql/lib/protocol/sequences/ExecutableBase.d.ts +41 -0
  826. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/typings/mysql/lib/protocol/sequences/Prepare.d.ts +65 -0
  827. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/typings/mysql/lib/protocol/sequences/Query.d.ts +235 -0
  828. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/typings/mysql/lib/protocol/sequences/QueryableBase.d.ts +41 -0
  829. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/typings/mysql/lib/protocol/sequences/Sequence.d.ts +5 -0
  830. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/typings/mysql/lib/protocol/sequences/promise/ExecutableBase.d.ts +17 -0
  831. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/mysql2/typings/mysql/lib/protocol/sequences/promise/QueryableBase.d.ts +18 -0
  832. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/named-placeholders/LICENSE +21 -0
  833. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/named-placeholders/README.md +27 -0
  834. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/named-placeholders/index.js +179 -0
  835. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/named-placeholders/package.json +36 -0
  836. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/negotiator/HISTORY.md +108 -0
  837. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/negotiator/LICENSE +24 -0
  838. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/negotiator/README.md +203 -0
  839. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/negotiator/index.js +82 -0
  840. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/negotiator/lib/charset.js +169 -0
  841. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/negotiator/lib/encoding.js +184 -0
  842. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/negotiator/lib/language.js +179 -0
  843. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/negotiator/lib/mediaType.js +294 -0
  844. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/negotiator/package.json +42 -0
  845. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/object-assign/index.js +90 -0
  846. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/object-assign/license +21 -0
  847. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/object-assign/package.json +42 -0
  848. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/object-assign/readme.md +61 -0
  849. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/object-inspect/.eslintrc +53 -0
  850. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/object-inspect/.github/FUNDING.yml +12 -0
  851. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/object-inspect/.nycrc +13 -0
  852. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/object-inspect/CHANGELOG.md +424 -0
  853. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/object-inspect/LICENSE +21 -0
  854. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/object-inspect/example/all.js +23 -0
  855. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/object-inspect/example/circular.js +6 -0
  856. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/object-inspect/example/fn.js +5 -0
  857. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/object-inspect/example/inspect.js +10 -0
  858. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/object-inspect/index.js +544 -0
  859. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/object-inspect/package-support.json +20 -0
  860. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/object-inspect/package.json +105 -0
  861. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/object-inspect/readme.markdown +84 -0
  862. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/object-inspect/test/bigint.js +58 -0
  863. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/object-inspect/test/browser/dom.js +15 -0
  864. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/object-inspect/test/circular.js +16 -0
  865. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/object-inspect/test/deep.js +12 -0
  866. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/object-inspect/test/element.js +53 -0
  867. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/object-inspect/test/err.js +48 -0
  868. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/object-inspect/test/fakes.js +29 -0
  869. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/object-inspect/test/fn.js +76 -0
  870. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/object-inspect/test/global.js +17 -0
  871. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/object-inspect/test/has.js +15 -0
  872. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/object-inspect/test/holes.js +15 -0
  873. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/object-inspect/test/indent-option.js +271 -0
  874. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/object-inspect/test/inspect.js +139 -0
  875. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/object-inspect/test/lowbyte.js +12 -0
  876. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/object-inspect/test/number.js +58 -0
  877. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/object-inspect/test/quoteStyle.js +26 -0
  878. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/object-inspect/test/toStringTag.js +40 -0
  879. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/object-inspect/test/undef.js +12 -0
  880. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/object-inspect/test/values.js +261 -0
  881. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/object-inspect/test-core-js.js +26 -0
  882. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/object-inspect/util.inspect.js +1 -0
  883. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/on-finished/HISTORY.md +98 -0
  884. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/on-finished/LICENSE +23 -0
  885. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/on-finished/README.md +162 -0
  886. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/on-finished/index.js +234 -0
  887. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/on-finished/package.json +39 -0
  888. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/parseurl/HISTORY.md +58 -0
  889. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/parseurl/LICENSE +24 -0
  890. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/parseurl/README.md +133 -0
  891. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/parseurl/index.js +158 -0
  892. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/parseurl/package.json +40 -0
  893. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/path-to-regexp/LICENSE +21 -0
  894. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/path-to-regexp/Readme.md +35 -0
  895. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/path-to-regexp/index.js +158 -0
  896. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/path-to-regexp/package.json +30 -0
  897. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/proxy-addr/HISTORY.md +161 -0
  898. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/proxy-addr/LICENSE +22 -0
  899. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/proxy-addr/README.md +139 -0
  900. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/proxy-addr/index.js +327 -0
  901. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/proxy-addr/package.json +47 -0
  902. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/qs/.editorconfig +46 -0
  903. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/qs/.github/FUNDING.yml +12 -0
  904. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/qs/.github/SECURITY.md +11 -0
  905. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/qs/.github/THREAT_MODEL.md +78 -0
  906. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/qs/.nycrc +13 -0
  907. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/qs/CHANGELOG.md +822 -0
  908. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/qs/LICENSE.md +29 -0
  909. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/qs/README.md +758 -0
  910. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/qs/dist/qs.js +141 -0
  911. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/qs/eslint.config.mjs +57 -0
  912. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/qs/lib/formats.js +23 -0
  913. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/qs/lib/index.js +11 -0
  914. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/qs/lib/parse.js +403 -0
  915. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/qs/lib/stringify.js +363 -0
  916. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/qs/lib/utils.js +342 -0
  917. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/qs/package.json +94 -0
  918. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/qs/test/empty-keys-cases.js +267 -0
  919. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/qs/test/parse.js +1703 -0
  920. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/qs/test/stringify.js +1448 -0
  921. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/qs/test/utils.js +432 -0
  922. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/range-parser/HISTORY.md +56 -0
  923. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/range-parser/LICENSE +23 -0
  924. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/range-parser/README.md +84 -0
  925. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/range-parser/index.js +162 -0
  926. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/range-parser/package.json +44 -0
  927. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/raw-body/LICENSE +22 -0
  928. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/raw-body/README.md +223 -0
  929. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/raw-body/index.d.ts +87 -0
  930. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/raw-body/index.js +336 -0
  931. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/raw-body/package.json +47 -0
  932. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/safe-buffer/LICENSE +21 -0
  933. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/safe-buffer/README.md +584 -0
  934. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/safe-buffer/index.d.ts +187 -0
  935. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/safe-buffer/index.js +65 -0
  936. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/safe-buffer/package.json +51 -0
  937. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/safer-buffer/LICENSE +21 -0
  938. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/safer-buffer/Porting-Buffer.md +268 -0
  939. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/safer-buffer/Readme.md +156 -0
  940. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/safer-buffer/dangerous.js +58 -0
  941. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/safer-buffer/package.json +34 -0
  942. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/safer-buffer/safer.js +77 -0
  943. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/safer-buffer/tests.js +406 -0
  944. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/semver/LICENSE +15 -0
  945. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/semver/README.md +680 -0
  946. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/semver/bin/semver.js +195 -0
  947. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/semver/classes/comparator.js +143 -0
  948. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/semver/classes/index.js +7 -0
  949. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/semver/classes/range.js +564 -0
  950. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/semver/classes/semver.js +333 -0
  951. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/semver/functions/clean.js +8 -0
  952. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/semver/functions/cmp.js +54 -0
  953. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/semver/functions/coerce.js +62 -0
  954. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/semver/functions/compare-build.js +9 -0
  955. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/semver/functions/compare-loose.js +5 -0
  956. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/semver/functions/compare.js +7 -0
  957. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/semver/functions/diff.js +60 -0
  958. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/semver/functions/eq.js +5 -0
  959. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/semver/functions/gt.js +5 -0
  960. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/semver/functions/gte.js +5 -0
  961. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/semver/functions/inc.js +21 -0
  962. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/semver/functions/lt.js +5 -0
  963. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/semver/functions/lte.js +5 -0
  964. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/semver/functions/major.js +5 -0
  965. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/semver/functions/minor.js +5 -0
  966. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/semver/functions/neq.js +5 -0
  967. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/semver/functions/parse.js +18 -0
  968. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/semver/functions/patch.js +5 -0
  969. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/semver/functions/prerelease.js +8 -0
  970. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/semver/functions/rcompare.js +5 -0
  971. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/semver/functions/rsort.js +5 -0
  972. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/semver/functions/satisfies.js +12 -0
  973. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/semver/functions/sort.js +5 -0
  974. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/semver/functions/truncate.js +48 -0
  975. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/semver/functions/valid.js +8 -0
  976. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/semver/index.js +93 -0
  977. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/semver/internal/constants.js +37 -0
  978. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/semver/internal/debug.js +11 -0
  979. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/semver/internal/identifiers.js +29 -0
  980. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/semver/internal/lrucache.js +42 -0
  981. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/semver/internal/parse-options.js +17 -0
  982. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/semver/internal/re.js +223 -0
  983. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/semver/package.json +78 -0
  984. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/semver/preload.js +4 -0
  985. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/semver/range.bnf +17 -0
  986. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/semver/ranges/gtr.js +6 -0
  987. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/semver/ranges/intersects.js +9 -0
  988. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/semver/ranges/ltr.js +6 -0
  989. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/semver/ranges/max-satisfying.js +27 -0
  990. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/semver/ranges/min-satisfying.js +26 -0
  991. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/semver/ranges/min-version.js +63 -0
  992. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/semver/ranges/outside.js +82 -0
  993. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/semver/ranges/simplify.js +49 -0
  994. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/semver/ranges/subset.js +249 -0
  995. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/semver/ranges/to-comparators.js +10 -0
  996. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/semver/ranges/valid.js +13 -0
  997. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/send/HISTORY.md +538 -0
  998. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/send/LICENSE +23 -0
  999. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/send/README.md +327 -0
  1000. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/send/SECURITY.md +24 -0
  1001. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/send/index.js +1142 -0
  1002. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/send/node_modules/ms/index.js +162 -0
  1003. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/send/node_modules/ms/license.md +21 -0
  1004. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/send/node_modules/ms/package.json +38 -0
  1005. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/send/node_modules/ms/readme.md +59 -0
  1006. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/send/package.json +62 -0
  1007. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/serve-static/HISTORY.md +493 -0
  1008. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/serve-static/LICENSE +25 -0
  1009. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/serve-static/README.md +257 -0
  1010. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/serve-static/index.js +209 -0
  1011. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/serve-static/package.json +42 -0
  1012. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/setprototypeof/LICENSE +13 -0
  1013. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/setprototypeof/README.md +31 -0
  1014. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/setprototypeof/index.d.ts +2 -0
  1015. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/setprototypeof/index.js +17 -0
  1016. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/setprototypeof/package.json +38 -0
  1017. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/setprototypeof/test/index.js +24 -0
  1018. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/side-channel/.editorconfig +9 -0
  1019. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/side-channel/.eslintrc +12 -0
  1020. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/side-channel/.github/FUNDING.yml +12 -0
  1021. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/side-channel/.nycrc +13 -0
  1022. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/side-channel/CHANGELOG.md +110 -0
  1023. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/side-channel/LICENSE +21 -0
  1024. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/side-channel/README.md +61 -0
  1025. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/side-channel/index.d.ts +14 -0
  1026. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/side-channel/index.js +43 -0
  1027. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/side-channel/package.json +85 -0
  1028. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/side-channel/test/index.js +104 -0
  1029. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/side-channel/tsconfig.json +9 -0
  1030. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/side-channel-list/.editorconfig +9 -0
  1031. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/side-channel-list/.eslintrc +11 -0
  1032. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/side-channel-list/.github/FUNDING.yml +12 -0
  1033. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/side-channel-list/.nycrc +13 -0
  1034. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/side-channel-list/CHANGELOG.md +36 -0
  1035. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/side-channel-list/LICENSE +21 -0
  1036. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/side-channel-list/README.md +62 -0
  1037. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/side-channel-list/index.d.ts +13 -0
  1038. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/side-channel-list/index.js +111 -0
  1039. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/side-channel-list/list.d.ts +14 -0
  1040. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/side-channel-list/package.json +77 -0
  1041. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/side-channel-list/test/index.js +154 -0
  1042. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/side-channel-list/tsconfig.json +9 -0
  1043. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/side-channel-map/.editorconfig +9 -0
  1044. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/side-channel-map/.eslintrc +11 -0
  1045. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/side-channel-map/.github/FUNDING.yml +12 -0
  1046. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/side-channel-map/.nycrc +13 -0
  1047. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/side-channel-map/CHANGELOG.md +22 -0
  1048. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/side-channel-map/LICENSE +21 -0
  1049. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/side-channel-map/README.md +62 -0
  1050. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/side-channel-map/index.d.ts +15 -0
  1051. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/side-channel-map/index.js +68 -0
  1052. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/side-channel-map/package.json +80 -0
  1053. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/side-channel-map/test/index.js +114 -0
  1054. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/side-channel-map/tsconfig.json +9 -0
  1055. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/side-channel-weakmap/.editorconfig +9 -0
  1056. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/side-channel-weakmap/.eslintrc +12 -0
  1057. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/side-channel-weakmap/.github/FUNDING.yml +12 -0
  1058. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/side-channel-weakmap/.nycrc +13 -0
  1059. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/side-channel-weakmap/CHANGELOG.md +28 -0
  1060. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/side-channel-weakmap/LICENSE +21 -0
  1061. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/side-channel-weakmap/README.md +62 -0
  1062. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/side-channel-weakmap/index.d.ts +15 -0
  1063. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/side-channel-weakmap/index.js +84 -0
  1064. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/side-channel-weakmap/package.json +87 -0
  1065. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/side-channel-weakmap/test/index.js +114 -0
  1066. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/side-channel-weakmap/tsconfig.json +9 -0
  1067. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/sql-escaper/LICENSE +21 -0
  1068. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/sql-escaper/README.md +424 -0
  1069. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/sql-escaper/lib/index.d.ts +15 -0
  1070. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/sql-escaper/lib/index.js +398 -0
  1071. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/sql-escaper/lib/index.mjs +305 -0
  1072. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/sql-escaper/lib/types.d.ts +5 -0
  1073. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/sql-escaper/lib/types.js +2 -0
  1074. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/sql-escaper/package.json +81 -0
  1075. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/statuses/HISTORY.md +87 -0
  1076. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/statuses/LICENSE +23 -0
  1077. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/statuses/README.md +139 -0
  1078. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/statuses/codes.json +65 -0
  1079. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/statuses/index.js +146 -0
  1080. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/statuses/package.json +49 -0
  1081. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/toidentifier/HISTORY.md +9 -0
  1082. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/toidentifier/LICENSE +21 -0
  1083. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/toidentifier/README.md +61 -0
  1084. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/toidentifier/index.js +32 -0
  1085. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/toidentifier/package.json +38 -0
  1086. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/type-is/HISTORY.md +259 -0
  1087. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/type-is/LICENSE +23 -0
  1088. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/type-is/README.md +170 -0
  1089. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/type-is/index.js +266 -0
  1090. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/type-is/package.json +45 -0
  1091. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/undici-types/LICENSE +21 -0
  1092. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/undici-types/README.md +6 -0
  1093. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/undici-types/agent.d.ts +32 -0
  1094. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/undici-types/api.d.ts +43 -0
  1095. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/undici-types/balanced-pool.d.ts +30 -0
  1096. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/undici-types/cache-interceptor.d.ts +179 -0
  1097. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/undici-types/cache.d.ts +36 -0
  1098. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/undici-types/client-stats.d.ts +15 -0
  1099. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/undici-types/client.d.ts +123 -0
  1100. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/undici-types/connector.d.ts +36 -0
  1101. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/undici-types/content-type.d.ts +21 -0
  1102. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/undici-types/cookies.d.ts +30 -0
  1103. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/undici-types/diagnostics-channel.d.ts +74 -0
  1104. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/undici-types/dispatcher.d.ts +279 -0
  1105. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/undici-types/env-http-proxy-agent.d.ts +22 -0
  1106. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/undici-types/errors.d.ts +177 -0
  1107. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/undici-types/eventsource.d.ts +66 -0
  1108. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/undici-types/fetch.d.ts +211 -0
  1109. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/undici-types/formdata.d.ts +108 -0
  1110. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/undici-types/global-dispatcher.d.ts +9 -0
  1111. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/undici-types/global-origin.d.ts +7 -0
  1112. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/undici-types/h2c-client.d.ts +73 -0
  1113. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/undici-types/handlers.d.ts +15 -0
  1114. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/undici-types/header.d.ts +160 -0
  1115. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/undici-types/index.d.ts +91 -0
  1116. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/undici-types/interceptors.d.ts +80 -0
  1117. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/undici-types/mock-agent.d.ts +68 -0
  1118. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/undici-types/mock-call-history.d.ts +111 -0
  1119. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/undici-types/mock-client.d.ts +27 -0
  1120. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/undici-types/mock-errors.d.ts +12 -0
  1121. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/undici-types/mock-interceptor.d.ts +94 -0
  1122. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/undici-types/mock-pool.d.ts +27 -0
  1123. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/undici-types/package.json +55 -0
  1124. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/undici-types/patch.d.ts +29 -0
  1125. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/undici-types/pool-stats.d.ts +19 -0
  1126. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/undici-types/pool.d.ts +41 -0
  1127. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/undici-types/proxy-agent.d.ts +29 -0
  1128. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/undici-types/readable.d.ts +68 -0
  1129. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/undici-types/retry-agent.d.ts +8 -0
  1130. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/undici-types/retry-handler.d.ts +125 -0
  1131. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/undici-types/round-robin-pool.d.ts +41 -0
  1132. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/undici-types/snapshot-agent.d.ts +109 -0
  1133. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/undici-types/socks5-proxy-agent.d.ts +25 -0
  1134. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/undici-types/util.d.ts +18 -0
  1135. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/undici-types/utility.d.ts +7 -0
  1136. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/undici-types/webidl.d.ts +347 -0
  1137. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/undici-types/websocket.d.ts +188 -0
  1138. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/unpipe/HISTORY.md +4 -0
  1139. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/unpipe/LICENSE +22 -0
  1140. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/unpipe/README.md +43 -0
  1141. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/unpipe/index.js +69 -0
  1142. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/unpipe/package.json +27 -0
  1143. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/utils-merge/LICENSE +20 -0
  1144. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/utils-merge/README.md +34 -0
  1145. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/utils-merge/index.js +23 -0
  1146. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/utils-merge/package.json +40 -0
  1147. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/vary/HISTORY.md +39 -0
  1148. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/vary/LICENSE +22 -0
  1149. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/vary/README.md +101 -0
  1150. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/vary/index.js +149 -0
  1151. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/node_modules/vary/package.json +43 -0
  1152. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/package-lock.json +1130 -0
  1153. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/package.json +19 -0
  1154. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/routes/auth.js +53 -0
  1155. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/routes/departments.js +38 -0
  1156. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/routes/employees.js +70 -0
  1157. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/routes/reports.js +71 -0
  1158. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/routes/salaries.js +92 -0
  1159. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/scripts/seedUser.js +25 -0
  1160. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/backend-project/server.js +29 -0
  1161. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/database/epms_schema.sql +53 -0
  1162. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/docs/ERD.md +75 -0
  1163. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/frontend-project/README.md +16 -0
  1164. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/frontend-project/eslint.config.js +21 -0
  1165. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/frontend-project/index.html +13 -0
  1166. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/frontend-project/package-lock.json +3167 -0
  1167. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/frontend-project/package.json +31 -0
  1168. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/frontend-project/public/favicon.svg +1 -0
  1169. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/frontend-project/public/icons.svg +24 -0
  1170. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/frontend-project/src/App.jsx +36 -0
  1171. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/frontend-project/src/api/client.js +15 -0
  1172. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/frontend-project/src/assets/hero.png +0 -0
  1173. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/frontend-project/src/assets/react.svg +1 -0
  1174. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/frontend-project/src/assets/vite.svg +1 -0
  1175. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/frontend-project/src/components/Alert.jsx +13 -0
  1176. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/frontend-project/src/components/Layout.jsx +54 -0
  1177. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/frontend-project/src/components/ProtectedRoute.jsx +15 -0
  1178. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/frontend-project/src/context/AuthContext.jsx +40 -0
  1179. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/frontend-project/src/index.css +5 -0
  1180. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/frontend-project/src/main.jsx +10 -0
  1181. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/frontend-project/src/pages/DepartmentPage.jsx +85 -0
  1182. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/frontend-project/src/pages/EmployeePage.jsx +141 -0
  1183. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/frontend-project/src/pages/Login.jsx +77 -0
  1184. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/frontend-project/src/pages/Register.jsx +64 -0
  1185. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/frontend-project/src/pages/ReportsPage.jsx +153 -0
  1186. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/frontend-project/src/pages/SalaryPage.jsx +186 -0
  1187. package/template/EPMS/Davina_LastName_National_Practical_Exam_2026/frontend-project/vite.config.js +16 -0
  1188. package/template/SCMS/README.md +148 -0
  1189. package/template/SCMS/backend-project/.env +6 -0
  1190. package/template/SCMS/backend-project/.env.example +6 -0
  1191. package/template/SCMS/backend-project/config/db.js +13 -0
  1192. package/template/SCMS/backend-project/middleware/auth.js +19 -0
  1193. package/template/SCMS/backend-project/node_modules/.bin/mime +16 -0
  1194. package/template/SCMS/backend-project/node_modules/.bin/mime.cmd +17 -0
  1195. package/template/SCMS/backend-project/node_modules/.bin/mime.ps1 +28 -0
  1196. package/template/SCMS/backend-project/node_modules/.bin/semver +16 -0
  1197. package/template/SCMS/backend-project/node_modules/.bin/semver.cmd +17 -0
  1198. package/template/SCMS/backend-project/node_modules/.bin/semver.ps1 +28 -0
  1199. package/template/SCMS/backend-project/node_modules/.package-lock.json +1118 -0
  1200. package/template/SCMS/backend-project/node_modules/@types/node/LICENSE +21 -0
  1201. package/template/SCMS/backend-project/node_modules/@types/node/README.md +15 -0
  1202. package/template/SCMS/backend-project/node_modules/@types/node/assert/strict.d.ts +59 -0
  1203. package/template/SCMS/backend-project/node_modules/@types/node/assert.d.ts +950 -0
  1204. package/template/SCMS/backend-project/node_modules/@types/node/async_hooks.d.ts +711 -0
  1205. package/template/SCMS/backend-project/node_modules/@types/node/buffer.buffer.d.ts +466 -0
  1206. package/template/SCMS/backend-project/node_modules/@types/node/buffer.d.ts +1765 -0
  1207. package/template/SCMS/backend-project/node_modules/@types/node/child_process.d.ts +1366 -0
  1208. package/template/SCMS/backend-project/node_modules/@types/node/cluster.d.ts +432 -0
  1209. package/template/SCMS/backend-project/node_modules/@types/node/compatibility/iterators.d.ts +21 -0
  1210. package/template/SCMS/backend-project/node_modules/@types/node/console.d.ts +93 -0
  1211. package/template/SCMS/backend-project/node_modules/@types/node/constants.d.ts +14 -0
  1212. package/template/SCMS/backend-project/node_modules/@types/node/crypto.d.ts +4058 -0
  1213. package/template/SCMS/backend-project/node_modules/@types/node/dgram.d.ts +537 -0
  1214. package/template/SCMS/backend-project/node_modules/@types/node/diagnostics_channel.d.ts +552 -0
  1215. package/template/SCMS/backend-project/node_modules/@types/node/dns/promises.d.ts +497 -0
  1216. package/template/SCMS/backend-project/node_modules/@types/node/dns.d.ts +876 -0
  1217. package/template/SCMS/backend-project/node_modules/@types/node/domain.d.ts +150 -0
  1218. package/template/SCMS/backend-project/node_modules/@types/node/events.d.ts +1008 -0
  1219. package/template/SCMS/backend-project/node_modules/@types/node/fs/promises.d.ts +1468 -0
  1220. package/template/SCMS/backend-project/node_modules/@types/node/fs.d.ts +4780 -0
  1221. package/template/SCMS/backend-project/node_modules/@types/node/globals.d.ts +150 -0
  1222. package/template/SCMS/backend-project/node_modules/@types/node/globals.typedarray.d.ts +101 -0
  1223. package/template/SCMS/backend-project/node_modules/@types/node/http.d.ts +2147 -0
  1224. package/template/SCMS/backend-project/node_modules/@types/node/http2.d.ts +2485 -0
  1225. package/template/SCMS/backend-project/node_modules/@types/node/https.d.ts +400 -0
  1226. package/template/SCMS/backend-project/node_modules/@types/node/index.d.ts +117 -0
  1227. package/template/SCMS/backend-project/node_modules/@types/node/inspector/promises.d.ts +35 -0
  1228. package/template/SCMS/backend-project/node_modules/@types/node/inspector.d.ts +264 -0
  1229. package/template/SCMS/backend-project/node_modules/@types/node/inspector.generated.d.ts +4406 -0
  1230. package/template/SCMS/backend-project/node_modules/@types/node/module.d.ts +755 -0
  1231. package/template/SCMS/backend-project/node_modules/@types/node/net.d.ts +970 -0
  1232. package/template/SCMS/backend-project/node_modules/@types/node/os.d.ts +498 -0
  1233. package/template/SCMS/backend-project/node_modules/@types/node/package.json +155 -0
  1234. package/template/SCMS/backend-project/node_modules/@types/node/path/posix.d.ts +8 -0
  1235. package/template/SCMS/backend-project/node_modules/@types/node/path/win32.d.ts +8 -0
  1236. package/template/SCMS/backend-project/node_modules/@types/node/path.d.ts +178 -0
  1237. package/template/SCMS/backend-project/node_modules/@types/node/perf_hooks.d.ts +612 -0
  1238. package/template/SCMS/backend-project/node_modules/@types/node/process.d.ts +2204 -0
  1239. package/template/SCMS/backend-project/node_modules/@types/node/punycode.d.ts +89 -0
  1240. package/template/SCMS/backend-project/node_modules/@types/node/querystring.d.ts +139 -0
  1241. package/template/SCMS/backend-project/node_modules/@types/node/quic.d.ts +897 -0
  1242. package/template/SCMS/backend-project/node_modules/@types/node/readline/promises.d.ts +158 -0
  1243. package/template/SCMS/backend-project/node_modules/@types/node/readline.d.ts +507 -0
  1244. package/template/SCMS/backend-project/node_modules/@types/node/repl.d.ts +420 -0
  1245. package/template/SCMS/backend-project/node_modules/@types/node/sea.d.ts +47 -0
  1246. package/template/SCMS/backend-project/node_modules/@types/node/sqlite.d.ts +1068 -0
  1247. package/template/SCMS/backend-project/node_modules/@types/node/stream/consumers.d.ts +114 -0
  1248. package/template/SCMS/backend-project/node_modules/@types/node/stream/iter.d.ts +301 -0
  1249. package/template/SCMS/backend-project/node_modules/@types/node/stream/promises.d.ts +211 -0
  1250. package/template/SCMS/backend-project/node_modules/@types/node/stream/web.d.ts +300 -0
  1251. package/template/SCMS/backend-project/node_modules/@types/node/stream.d.ts +1774 -0
  1252. package/template/SCMS/backend-project/node_modules/@types/node/string_decoder.d.ts +27 -0
  1253. package/template/SCMS/backend-project/node_modules/@types/node/test/reporters.d.ts +59 -0
  1254. package/template/SCMS/backend-project/node_modules/@types/node/test.d.ts +2279 -0
  1255. package/template/SCMS/backend-project/node_modules/@types/node/timers/promises.d.ts +93 -0
  1256. package/template/SCMS/backend-project/node_modules/@types/node/timers.d.ts +149 -0
  1257. package/template/SCMS/backend-project/node_modules/@types/node/tls.d.ts +1193 -0
  1258. package/template/SCMS/backend-project/node_modules/@types/node/trace_events.d.ts +103 -0
  1259. package/template/SCMS/backend-project/node_modules/@types/node/ts5.6/buffer.buffer.d.ts +462 -0
  1260. package/template/SCMS/backend-project/node_modules/@types/node/ts5.6/compatibility/float16array.d.ts +71 -0
  1261. package/template/SCMS/backend-project/node_modules/@types/node/ts5.6/globals.typedarray.d.ts +36 -0
  1262. package/template/SCMS/backend-project/node_modules/@types/node/ts5.6/index.d.ts +119 -0
  1263. package/template/SCMS/backend-project/node_modules/@types/node/ts5.7/compatibility/float16array.d.ts +72 -0
  1264. package/template/SCMS/backend-project/node_modules/@types/node/ts5.7/index.d.ts +119 -0
  1265. package/template/SCMS/backend-project/node_modules/@types/node/tty.d.ts +225 -0
  1266. package/template/SCMS/backend-project/node_modules/@types/node/url.d.ts +556 -0
  1267. package/template/SCMS/backend-project/node_modules/@types/node/util/types.d.ts +558 -0
  1268. package/template/SCMS/backend-project/node_modules/@types/node/util.d.ts +1677 -0
  1269. package/template/SCMS/backend-project/node_modules/@types/node/v8.d.ts +980 -0
  1270. package/template/SCMS/backend-project/node_modules/@types/node/vm.d.ts +1136 -0
  1271. package/template/SCMS/backend-project/node_modules/@types/node/wasi.d.ts +131 -0
  1272. package/template/SCMS/backend-project/node_modules/@types/node/web-globals/abortcontroller.d.ts +59 -0
  1273. package/template/SCMS/backend-project/node_modules/@types/node/web-globals/blob.d.ts +23 -0
  1274. package/template/SCMS/backend-project/node_modules/@types/node/web-globals/console.d.ts +9 -0
  1275. package/template/SCMS/backend-project/node_modules/@types/node/web-globals/crypto.d.ts +39 -0
  1276. package/template/SCMS/backend-project/node_modules/@types/node/web-globals/domexception.d.ts +68 -0
  1277. package/template/SCMS/backend-project/node_modules/@types/node/web-globals/encoding.d.ts +11 -0
  1278. package/template/SCMS/backend-project/node_modules/@types/node/web-globals/events.d.ts +106 -0
  1279. package/template/SCMS/backend-project/node_modules/@types/node/web-globals/fetch.d.ts +69 -0
  1280. package/template/SCMS/backend-project/node_modules/@types/node/web-globals/importmeta.d.ts +13 -0
  1281. package/template/SCMS/backend-project/node_modules/@types/node/web-globals/messaging.d.ts +23 -0
  1282. package/template/SCMS/backend-project/node_modules/@types/node/web-globals/navigator.d.ts +25 -0
  1283. package/template/SCMS/backend-project/node_modules/@types/node/web-globals/performance.d.ts +45 -0
  1284. package/template/SCMS/backend-project/node_modules/@types/node/web-globals/storage.d.ts +24 -0
  1285. package/template/SCMS/backend-project/node_modules/@types/node/web-globals/streams.d.ts +115 -0
  1286. package/template/SCMS/backend-project/node_modules/@types/node/web-globals/timers.d.ts +44 -0
  1287. package/template/SCMS/backend-project/node_modules/@types/node/web-globals/url.d.ts +24 -0
  1288. package/template/SCMS/backend-project/node_modules/@types/node/worker_threads.d.ts +671 -0
  1289. package/template/SCMS/backend-project/node_modules/@types/node/zlib/iter.d.ts +131 -0
  1290. package/template/SCMS/backend-project/node_modules/@types/node/zlib.d.ts +589 -0
  1291. package/template/SCMS/backend-project/node_modules/accepts/HISTORY.md +243 -0
  1292. package/template/SCMS/backend-project/node_modules/accepts/LICENSE +23 -0
  1293. package/template/SCMS/backend-project/node_modules/accepts/README.md +140 -0
  1294. package/template/SCMS/backend-project/node_modules/accepts/index.js +238 -0
  1295. package/template/SCMS/backend-project/node_modules/accepts/package.json +47 -0
  1296. package/template/SCMS/backend-project/node_modules/array-flatten/LICENSE +21 -0
  1297. package/template/SCMS/backend-project/node_modules/array-flatten/README.md +43 -0
  1298. package/template/SCMS/backend-project/node_modules/array-flatten/array-flatten.js +64 -0
  1299. package/template/SCMS/backend-project/node_modules/array-flatten/package.json +39 -0
  1300. package/template/SCMS/backend-project/node_modules/aws-ssl-profiles/LICENSE +19 -0
  1301. package/template/SCMS/backend-project/node_modules/aws-ssl-profiles/README.md +146 -0
  1302. package/template/SCMS/backend-project/node_modules/aws-ssl-profiles/lib/@types/profiles.d.ts +4 -0
  1303. package/template/SCMS/backend-project/node_modules/aws-ssl-profiles/lib/@types/profiles.js +2 -0
  1304. package/template/SCMS/backend-project/node_modules/aws-ssl-profiles/lib/index.d.ts +8 -0
  1305. package/template/SCMS/backend-project/node_modules/aws-ssl-profiles/lib/index.js +13 -0
  1306. package/template/SCMS/backend-project/node_modules/aws-ssl-profiles/lib/profiles/ca/defaults.d.ts +9 -0
  1307. package/template/SCMS/backend-project/node_modules/aws-ssl-profiles/lib/profiles/ca/defaults.js +2888 -0
  1308. package/template/SCMS/backend-project/node_modules/aws-ssl-profiles/lib/profiles/ca/proxies.d.ts +8 -0
  1309. package/template/SCMS/backend-project/node_modules/aws-ssl-profiles/lib/profiles/ca/proxies.js +111 -0
  1310. package/template/SCMS/backend-project/node_modules/aws-ssl-profiles/package.json +52 -0
  1311. package/template/SCMS/backend-project/node_modules/bcryptjs/.travis.yml +18 -0
  1312. package/template/SCMS/backend-project/node_modules/bcryptjs/.vscode/settings.json +3 -0
  1313. package/template/SCMS/backend-project/node_modules/bcryptjs/LICENSE +50 -0
  1314. package/template/SCMS/backend-project/node_modules/bcryptjs/README.md +251 -0
  1315. package/template/SCMS/backend-project/node_modules/bcryptjs/bin/bcrypt +25 -0
  1316. package/template/SCMS/backend-project/node_modules/bcryptjs/bower.json +22 -0
  1317. package/template/SCMS/backend-project/node_modules/bcryptjs/dist/README.md +15 -0
  1318. package/template/SCMS/backend-project/node_modules/bcryptjs/dist/bcrypt.js +1379 -0
  1319. package/template/SCMS/backend-project/node_modules/bcryptjs/dist/bcrypt.min.js +48 -0
  1320. package/template/SCMS/backend-project/node_modules/bcryptjs/dist/bcrypt.min.js.gz +0 -0
  1321. package/template/SCMS/backend-project/node_modules/bcryptjs/dist/bcrypt.min.map +8 -0
  1322. package/template/SCMS/backend-project/node_modules/bcryptjs/externs/bcrypt.js +91 -0
  1323. package/template/SCMS/backend-project/node_modules/bcryptjs/externs/minimal-env.js +98 -0
  1324. package/template/SCMS/backend-project/node_modules/bcryptjs/index.js +29 -0
  1325. package/template/SCMS/backend-project/node_modules/bcryptjs/package.json +47 -0
  1326. package/template/SCMS/backend-project/node_modules/bcryptjs/scripts/build.js +37 -0
  1327. package/template/SCMS/backend-project/node_modules/bcryptjs/src/bcrypt/impl.js +669 -0
  1328. package/template/SCMS/backend-project/node_modules/bcryptjs/src/bcrypt/prng/README.md +5 -0
  1329. package/template/SCMS/backend-project/node_modules/bcryptjs/src/bcrypt/prng/accum.js +133 -0
  1330. package/template/SCMS/backend-project/node_modules/bcryptjs/src/bcrypt/prng/isaac.js +140 -0
  1331. package/template/SCMS/backend-project/node_modules/bcryptjs/src/bcrypt/util/base64.js +115 -0
  1332. package/template/SCMS/backend-project/node_modules/bcryptjs/src/bcrypt/util.js +33 -0
  1333. package/template/SCMS/backend-project/node_modules/bcryptjs/src/bcrypt.js +327 -0
  1334. package/template/SCMS/backend-project/node_modules/bcryptjs/src/bower.json +22 -0
  1335. package/template/SCMS/backend-project/node_modules/bcryptjs/src/wrap.js +50 -0
  1336. package/template/SCMS/backend-project/node_modules/bcryptjs/tests/quickbrown.txt +150 -0
  1337. package/template/SCMS/backend-project/node_modules/bcryptjs/tests/suite.js +197 -0
  1338. package/template/SCMS/backend-project/node_modules/body-parser/HISTORY.md +686 -0
  1339. package/template/SCMS/backend-project/node_modules/body-parser/LICENSE +23 -0
  1340. package/template/SCMS/backend-project/node_modules/body-parser/README.md +476 -0
  1341. package/template/SCMS/backend-project/node_modules/body-parser/index.js +156 -0
  1342. package/template/SCMS/backend-project/node_modules/body-parser/lib/read.js +205 -0
  1343. package/template/SCMS/backend-project/node_modules/body-parser/lib/types/json.js +243 -0
  1344. package/template/SCMS/backend-project/node_modules/body-parser/lib/types/raw.js +101 -0
  1345. package/template/SCMS/backend-project/node_modules/body-parser/lib/types/text.js +121 -0
  1346. package/template/SCMS/backend-project/node_modules/body-parser/lib/types/urlencoded.js +299 -0
  1347. package/template/SCMS/backend-project/node_modules/body-parser/package.json +55 -0
  1348. package/template/SCMS/backend-project/node_modules/buffer-equal-constant-time/.travis.yml +4 -0
  1349. package/template/SCMS/backend-project/node_modules/buffer-equal-constant-time/LICENSE.txt +12 -0
  1350. package/template/SCMS/backend-project/node_modules/buffer-equal-constant-time/README.md +50 -0
  1351. package/template/SCMS/backend-project/node_modules/buffer-equal-constant-time/index.js +41 -0
  1352. package/template/SCMS/backend-project/node_modules/buffer-equal-constant-time/package.json +21 -0
  1353. package/template/SCMS/backend-project/node_modules/buffer-equal-constant-time/test.js +42 -0
  1354. package/template/SCMS/backend-project/node_modules/bytes/History.md +97 -0
  1355. package/template/SCMS/backend-project/node_modules/bytes/LICENSE +23 -0
  1356. package/template/SCMS/backend-project/node_modules/bytes/Readme.md +152 -0
  1357. package/template/SCMS/backend-project/node_modules/bytes/index.js +170 -0
  1358. package/template/SCMS/backend-project/node_modules/bytes/package.json +42 -0
  1359. package/template/SCMS/backend-project/node_modules/call-bind-apply-helpers/.eslintrc +17 -0
  1360. package/template/SCMS/backend-project/node_modules/call-bind-apply-helpers/.github/FUNDING.yml +12 -0
  1361. package/template/SCMS/backend-project/node_modules/call-bind-apply-helpers/.nycrc +9 -0
  1362. package/template/SCMS/backend-project/node_modules/call-bind-apply-helpers/CHANGELOG.md +30 -0
  1363. package/template/SCMS/backend-project/node_modules/call-bind-apply-helpers/LICENSE +21 -0
  1364. package/template/SCMS/backend-project/node_modules/call-bind-apply-helpers/README.md +62 -0
  1365. package/template/SCMS/backend-project/node_modules/call-bind-apply-helpers/actualApply.d.ts +1 -0
  1366. package/template/SCMS/backend-project/node_modules/call-bind-apply-helpers/actualApply.js +10 -0
  1367. package/template/SCMS/backend-project/node_modules/call-bind-apply-helpers/applyBind.d.ts +19 -0
  1368. package/template/SCMS/backend-project/node_modules/call-bind-apply-helpers/applyBind.js +10 -0
  1369. package/template/SCMS/backend-project/node_modules/call-bind-apply-helpers/functionApply.d.ts +1 -0
  1370. package/template/SCMS/backend-project/node_modules/call-bind-apply-helpers/functionApply.js +4 -0
  1371. package/template/SCMS/backend-project/node_modules/call-bind-apply-helpers/functionCall.d.ts +1 -0
  1372. package/template/SCMS/backend-project/node_modules/call-bind-apply-helpers/functionCall.js +4 -0
  1373. package/template/SCMS/backend-project/node_modules/call-bind-apply-helpers/index.d.ts +64 -0
  1374. package/template/SCMS/backend-project/node_modules/call-bind-apply-helpers/index.js +15 -0
  1375. package/template/SCMS/backend-project/node_modules/call-bind-apply-helpers/package.json +85 -0
  1376. package/template/SCMS/backend-project/node_modules/call-bind-apply-helpers/reflectApply.d.ts +3 -0
  1377. package/template/SCMS/backend-project/node_modules/call-bind-apply-helpers/reflectApply.js +4 -0
  1378. package/template/SCMS/backend-project/node_modules/call-bind-apply-helpers/test/index.js +63 -0
  1379. package/template/SCMS/backend-project/node_modules/call-bind-apply-helpers/tsconfig.json +9 -0
  1380. package/template/SCMS/backend-project/node_modules/call-bound/.eslintrc +13 -0
  1381. package/template/SCMS/backend-project/node_modules/call-bound/.github/FUNDING.yml +12 -0
  1382. package/template/SCMS/backend-project/node_modules/call-bound/.nycrc +9 -0
  1383. package/template/SCMS/backend-project/node_modules/call-bound/CHANGELOG.md +42 -0
  1384. package/template/SCMS/backend-project/node_modules/call-bound/LICENSE +21 -0
  1385. package/template/SCMS/backend-project/node_modules/call-bound/README.md +53 -0
  1386. package/template/SCMS/backend-project/node_modules/call-bound/index.d.ts +94 -0
  1387. package/template/SCMS/backend-project/node_modules/call-bound/index.js +19 -0
  1388. package/template/SCMS/backend-project/node_modules/call-bound/package.json +99 -0
  1389. package/template/SCMS/backend-project/node_modules/call-bound/test/index.js +61 -0
  1390. package/template/SCMS/backend-project/node_modules/call-bound/tsconfig.json +10 -0
  1391. package/template/SCMS/backend-project/node_modules/content-disposition/HISTORY.md +60 -0
  1392. package/template/SCMS/backend-project/node_modules/content-disposition/LICENSE +22 -0
  1393. package/template/SCMS/backend-project/node_modules/content-disposition/README.md +142 -0
  1394. package/template/SCMS/backend-project/node_modules/content-disposition/index.js +458 -0
  1395. package/template/SCMS/backend-project/node_modules/content-disposition/package.json +44 -0
  1396. package/template/SCMS/backend-project/node_modules/content-type/HISTORY.md +29 -0
  1397. package/template/SCMS/backend-project/node_modules/content-type/LICENSE +22 -0
  1398. package/template/SCMS/backend-project/node_modules/content-type/README.md +94 -0
  1399. package/template/SCMS/backend-project/node_modules/content-type/index.js +225 -0
  1400. package/template/SCMS/backend-project/node_modules/content-type/package.json +42 -0
  1401. package/template/SCMS/backend-project/node_modules/cookie/LICENSE +24 -0
  1402. package/template/SCMS/backend-project/node_modules/cookie/README.md +317 -0
  1403. package/template/SCMS/backend-project/node_modules/cookie/SECURITY.md +25 -0
  1404. package/template/SCMS/backend-project/node_modules/cookie/index.js +335 -0
  1405. package/template/SCMS/backend-project/node_modules/cookie/package.json +44 -0
  1406. package/template/SCMS/backend-project/node_modules/cookie-signature/History.md +42 -0
  1407. package/template/SCMS/backend-project/node_modules/cookie-signature/Readme.md +42 -0
  1408. package/template/SCMS/backend-project/node_modules/cookie-signature/index.js +51 -0
  1409. package/template/SCMS/backend-project/node_modules/cookie-signature/package.json +18 -0
  1410. package/template/SCMS/backend-project/node_modules/cors/LICENSE +22 -0
  1411. package/template/SCMS/backend-project/node_modules/cors/README.md +277 -0
  1412. package/template/SCMS/backend-project/node_modules/cors/lib/index.js +238 -0
  1413. package/template/SCMS/backend-project/node_modules/cors/package.json +42 -0
  1414. package/template/SCMS/backend-project/node_modules/debug/.coveralls.yml +1 -0
  1415. package/template/SCMS/backend-project/node_modules/debug/.eslintrc +11 -0
  1416. package/template/SCMS/backend-project/node_modules/debug/.travis.yml +14 -0
  1417. package/template/SCMS/backend-project/node_modules/debug/CHANGELOG.md +362 -0
  1418. package/template/SCMS/backend-project/node_modules/debug/LICENSE +19 -0
  1419. package/template/SCMS/backend-project/node_modules/debug/Makefile +50 -0
  1420. package/template/SCMS/backend-project/node_modules/debug/README.md +312 -0
  1421. package/template/SCMS/backend-project/node_modules/debug/component.json +19 -0
  1422. package/template/SCMS/backend-project/node_modules/debug/karma.conf.js +70 -0
  1423. package/template/SCMS/backend-project/node_modules/debug/node.js +1 -0
  1424. package/template/SCMS/backend-project/node_modules/debug/package.json +49 -0
  1425. package/template/SCMS/backend-project/node_modules/debug/src/browser.js +185 -0
  1426. package/template/SCMS/backend-project/node_modules/debug/src/debug.js +202 -0
  1427. package/template/SCMS/backend-project/node_modules/debug/src/index.js +10 -0
  1428. package/template/SCMS/backend-project/node_modules/debug/src/inspector-log.js +15 -0
  1429. package/template/SCMS/backend-project/node_modules/debug/src/node.js +248 -0
  1430. package/template/SCMS/backend-project/node_modules/denque/CHANGELOG.md +29 -0
  1431. package/template/SCMS/backend-project/node_modules/denque/LICENSE +201 -0
  1432. package/template/SCMS/backend-project/node_modules/denque/README.md +77 -0
  1433. package/template/SCMS/backend-project/node_modules/denque/index.d.ts +47 -0
  1434. package/template/SCMS/backend-project/node_modules/denque/index.js +481 -0
  1435. package/template/SCMS/backend-project/node_modules/denque/package.json +58 -0
  1436. package/template/SCMS/backend-project/node_modules/depd/History.md +103 -0
  1437. package/template/SCMS/backend-project/node_modules/depd/LICENSE +22 -0
  1438. package/template/SCMS/backend-project/node_modules/depd/Readme.md +280 -0
  1439. package/template/SCMS/backend-project/node_modules/depd/index.js +538 -0
  1440. package/template/SCMS/backend-project/node_modules/depd/lib/browser/index.js +77 -0
  1441. package/template/SCMS/backend-project/node_modules/depd/package.json +45 -0
  1442. package/template/SCMS/backend-project/node_modules/destroy/LICENSE +23 -0
  1443. package/template/SCMS/backend-project/node_modules/destroy/README.md +63 -0
  1444. package/template/SCMS/backend-project/node_modules/destroy/index.js +209 -0
  1445. package/template/SCMS/backend-project/node_modules/destroy/package.json +48 -0
  1446. package/template/SCMS/backend-project/node_modules/dotenv/CHANGELOG.md +520 -0
  1447. package/template/SCMS/backend-project/node_modules/dotenv/LICENSE +23 -0
  1448. package/template/SCMS/backend-project/node_modules/dotenv/README-es.md +411 -0
  1449. package/template/SCMS/backend-project/node_modules/dotenv/README.md +645 -0
  1450. package/template/SCMS/backend-project/node_modules/dotenv/SECURITY.md +1 -0
  1451. package/template/SCMS/backend-project/node_modules/dotenv/config.d.ts +1 -0
  1452. package/template/SCMS/backend-project/node_modules/dotenv/config.js +9 -0
  1453. package/template/SCMS/backend-project/node_modules/dotenv/lib/cli-options.js +17 -0
  1454. package/template/SCMS/backend-project/node_modules/dotenv/lib/env-options.js +28 -0
  1455. package/template/SCMS/backend-project/node_modules/dotenv/lib/main.d.ts +162 -0
  1456. package/template/SCMS/backend-project/node_modules/dotenv/lib/main.js +386 -0
  1457. package/template/SCMS/backend-project/node_modules/dotenv/package.json +62 -0
  1458. package/template/SCMS/backend-project/node_modules/dunder-proto/.eslintrc +5 -0
  1459. package/template/SCMS/backend-project/node_modules/dunder-proto/.github/FUNDING.yml +12 -0
  1460. package/template/SCMS/backend-project/node_modules/dunder-proto/.nycrc +13 -0
  1461. package/template/SCMS/backend-project/node_modules/dunder-proto/CHANGELOG.md +24 -0
  1462. package/template/SCMS/backend-project/node_modules/dunder-proto/LICENSE +21 -0
  1463. package/template/SCMS/backend-project/node_modules/dunder-proto/README.md +54 -0
  1464. package/template/SCMS/backend-project/node_modules/dunder-proto/get.d.ts +5 -0
  1465. package/template/SCMS/backend-project/node_modules/dunder-proto/get.js +30 -0
  1466. package/template/SCMS/backend-project/node_modules/dunder-proto/package.json +76 -0
  1467. package/template/SCMS/backend-project/node_modules/dunder-proto/set.d.ts +5 -0
  1468. package/template/SCMS/backend-project/node_modules/dunder-proto/set.js +35 -0
  1469. package/template/SCMS/backend-project/node_modules/dunder-proto/test/get.js +34 -0
  1470. package/template/SCMS/backend-project/node_modules/dunder-proto/test/index.js +4 -0
  1471. package/template/SCMS/backend-project/node_modules/dunder-proto/test/set.js +50 -0
  1472. package/template/SCMS/backend-project/node_modules/dunder-proto/tsconfig.json +9 -0
  1473. package/template/SCMS/backend-project/node_modules/ecdsa-sig-formatter/CODEOWNERS +1 -0
  1474. package/template/SCMS/backend-project/node_modules/ecdsa-sig-formatter/LICENSE +201 -0
  1475. package/template/SCMS/backend-project/node_modules/ecdsa-sig-formatter/README.md +65 -0
  1476. package/template/SCMS/backend-project/node_modules/ecdsa-sig-formatter/package.json +46 -0
  1477. package/template/SCMS/backend-project/node_modules/ecdsa-sig-formatter/src/ecdsa-sig-formatter.d.ts +17 -0
  1478. package/template/SCMS/backend-project/node_modules/ecdsa-sig-formatter/src/ecdsa-sig-formatter.js +187 -0
  1479. package/template/SCMS/backend-project/node_modules/ecdsa-sig-formatter/src/param-bytes-for-alg.js +23 -0
  1480. package/template/SCMS/backend-project/node_modules/ee-first/LICENSE +22 -0
  1481. package/template/SCMS/backend-project/node_modules/ee-first/README.md +80 -0
  1482. package/template/SCMS/backend-project/node_modules/ee-first/index.js +95 -0
  1483. package/template/SCMS/backend-project/node_modules/ee-first/package.json +29 -0
  1484. package/template/SCMS/backend-project/node_modules/encodeurl/LICENSE +22 -0
  1485. package/template/SCMS/backend-project/node_modules/encodeurl/README.md +109 -0
  1486. package/template/SCMS/backend-project/node_modules/encodeurl/index.js +60 -0
  1487. package/template/SCMS/backend-project/node_modules/encodeurl/package.json +40 -0
  1488. package/template/SCMS/backend-project/node_modules/es-define-property/.eslintrc +13 -0
  1489. package/template/SCMS/backend-project/node_modules/es-define-property/.github/FUNDING.yml +12 -0
  1490. package/template/SCMS/backend-project/node_modules/es-define-property/.nycrc +9 -0
  1491. package/template/SCMS/backend-project/node_modules/es-define-property/CHANGELOG.md +29 -0
  1492. package/template/SCMS/backend-project/node_modules/es-define-property/LICENSE +21 -0
  1493. package/template/SCMS/backend-project/node_modules/es-define-property/README.md +49 -0
  1494. package/template/SCMS/backend-project/node_modules/es-define-property/index.d.ts +3 -0
  1495. package/template/SCMS/backend-project/node_modules/es-define-property/index.js +14 -0
  1496. package/template/SCMS/backend-project/node_modules/es-define-property/package.json +81 -0
  1497. package/template/SCMS/backend-project/node_modules/es-define-property/test/index.js +56 -0
  1498. package/template/SCMS/backend-project/node_modules/es-define-property/tsconfig.json +10 -0
  1499. package/template/SCMS/backend-project/node_modules/es-errors/.eslintrc +5 -0
  1500. package/template/SCMS/backend-project/node_modules/es-errors/.github/FUNDING.yml +12 -0
  1501. package/template/SCMS/backend-project/node_modules/es-errors/CHANGELOG.md +40 -0
  1502. package/template/SCMS/backend-project/node_modules/es-errors/LICENSE +21 -0
  1503. package/template/SCMS/backend-project/node_modules/es-errors/README.md +55 -0
  1504. package/template/SCMS/backend-project/node_modules/es-errors/eval.d.ts +3 -0
  1505. package/template/SCMS/backend-project/node_modules/es-errors/eval.js +4 -0
  1506. package/template/SCMS/backend-project/node_modules/es-errors/index.d.ts +3 -0
  1507. package/template/SCMS/backend-project/node_modules/es-errors/index.js +4 -0
  1508. package/template/SCMS/backend-project/node_modules/es-errors/package.json +80 -0
  1509. package/template/SCMS/backend-project/node_modules/es-errors/range.d.ts +3 -0
  1510. package/template/SCMS/backend-project/node_modules/es-errors/range.js +4 -0
  1511. package/template/SCMS/backend-project/node_modules/es-errors/ref.d.ts +3 -0
  1512. package/template/SCMS/backend-project/node_modules/es-errors/ref.js +4 -0
  1513. package/template/SCMS/backend-project/node_modules/es-errors/syntax.d.ts +3 -0
  1514. package/template/SCMS/backend-project/node_modules/es-errors/syntax.js +4 -0
  1515. package/template/SCMS/backend-project/node_modules/es-errors/test/index.js +19 -0
  1516. package/template/SCMS/backend-project/node_modules/es-errors/tsconfig.json +49 -0
  1517. package/template/SCMS/backend-project/node_modules/es-errors/type.d.ts +3 -0
  1518. package/template/SCMS/backend-project/node_modules/es-errors/type.js +4 -0
  1519. package/template/SCMS/backend-project/node_modules/es-errors/uri.d.ts +3 -0
  1520. package/template/SCMS/backend-project/node_modules/es-errors/uri.js +4 -0
  1521. package/template/SCMS/backend-project/node_modules/es-object-atoms/.eslintrc +16 -0
  1522. package/template/SCMS/backend-project/node_modules/es-object-atoms/.github/FUNDING.yml +12 -0
  1523. package/template/SCMS/backend-project/node_modules/es-object-atoms/CHANGELOG.md +44 -0
  1524. package/template/SCMS/backend-project/node_modules/es-object-atoms/LICENSE +21 -0
  1525. package/template/SCMS/backend-project/node_modules/es-object-atoms/README.md +63 -0
  1526. package/template/SCMS/backend-project/node_modules/es-object-atoms/RequireObjectCoercible.d.ts +3 -0
  1527. package/template/SCMS/backend-project/node_modules/es-object-atoms/RequireObjectCoercible.js +11 -0
  1528. package/template/SCMS/backend-project/node_modules/es-object-atoms/ToObject.d.ts +7 -0
  1529. package/template/SCMS/backend-project/node_modules/es-object-atoms/ToObject.js +10 -0
  1530. package/template/SCMS/backend-project/node_modules/es-object-atoms/index.d.ts +3 -0
  1531. package/template/SCMS/backend-project/node_modules/es-object-atoms/index.js +4 -0
  1532. package/template/SCMS/backend-project/node_modules/es-object-atoms/isObject.d.ts +3 -0
  1533. package/template/SCMS/backend-project/node_modules/es-object-atoms/isObject.js +6 -0
  1534. package/template/SCMS/backend-project/node_modules/es-object-atoms/package.json +79 -0
  1535. package/template/SCMS/backend-project/node_modules/es-object-atoms/test/index.js +38 -0
  1536. package/template/SCMS/backend-project/node_modules/es-object-atoms/tsconfig.json +7 -0
  1537. package/template/SCMS/backend-project/node_modules/escape-html/LICENSE +24 -0
  1538. package/template/SCMS/backend-project/node_modules/escape-html/Readme.md +43 -0
  1539. package/template/SCMS/backend-project/node_modules/escape-html/index.js +78 -0
  1540. package/template/SCMS/backend-project/node_modules/escape-html/package.json +24 -0
  1541. package/template/SCMS/backend-project/node_modules/etag/HISTORY.md +83 -0
  1542. package/template/SCMS/backend-project/node_modules/etag/LICENSE +22 -0
  1543. package/template/SCMS/backend-project/node_modules/etag/README.md +159 -0
  1544. package/template/SCMS/backend-project/node_modules/etag/index.js +131 -0
  1545. package/template/SCMS/backend-project/node_modules/etag/package.json +47 -0
  1546. package/template/SCMS/backend-project/node_modules/express/History.md +3676 -0
  1547. package/template/SCMS/backend-project/node_modules/express/LICENSE +24 -0
  1548. package/template/SCMS/backend-project/node_modules/express/Readme.md +260 -0
  1549. package/template/SCMS/backend-project/node_modules/express/index.js +11 -0
  1550. package/template/SCMS/backend-project/node_modules/express/lib/application.js +661 -0
  1551. package/template/SCMS/backend-project/node_modules/express/lib/express.js +116 -0
  1552. package/template/SCMS/backend-project/node_modules/express/lib/middleware/init.js +43 -0
  1553. package/template/SCMS/backend-project/node_modules/express/lib/middleware/query.js +47 -0
  1554. package/template/SCMS/backend-project/node_modules/express/lib/request.js +525 -0
  1555. package/template/SCMS/backend-project/node_modules/express/lib/response.js +1179 -0
  1556. package/template/SCMS/backend-project/node_modules/express/lib/router/index.js +673 -0
  1557. package/template/SCMS/backend-project/node_modules/express/lib/router/layer.js +181 -0
  1558. package/template/SCMS/backend-project/node_modules/express/lib/router/route.js +230 -0
  1559. package/template/SCMS/backend-project/node_modules/express/lib/utils.js +304 -0
  1560. package/template/SCMS/backend-project/node_modules/express/lib/view.js +182 -0
  1561. package/template/SCMS/backend-project/node_modules/express/package.json +102 -0
  1562. package/template/SCMS/backend-project/node_modules/finalhandler/HISTORY.md +216 -0
  1563. package/template/SCMS/backend-project/node_modules/finalhandler/LICENSE +22 -0
  1564. package/template/SCMS/backend-project/node_modules/finalhandler/README.md +147 -0
  1565. package/template/SCMS/backend-project/node_modules/finalhandler/SECURITY.md +25 -0
  1566. package/template/SCMS/backend-project/node_modules/finalhandler/index.js +341 -0
  1567. package/template/SCMS/backend-project/node_modules/finalhandler/package.json +47 -0
  1568. package/template/SCMS/backend-project/node_modules/forwarded/HISTORY.md +21 -0
  1569. package/template/SCMS/backend-project/node_modules/forwarded/LICENSE +22 -0
  1570. package/template/SCMS/backend-project/node_modules/forwarded/README.md +57 -0
  1571. package/template/SCMS/backend-project/node_modules/forwarded/index.js +90 -0
  1572. package/template/SCMS/backend-project/node_modules/forwarded/package.json +45 -0
  1573. package/template/SCMS/backend-project/node_modules/fresh/HISTORY.md +70 -0
  1574. package/template/SCMS/backend-project/node_modules/fresh/LICENSE +23 -0
  1575. package/template/SCMS/backend-project/node_modules/fresh/README.md +119 -0
  1576. package/template/SCMS/backend-project/node_modules/fresh/index.js +137 -0
  1577. package/template/SCMS/backend-project/node_modules/fresh/package.json +46 -0
  1578. package/template/SCMS/backend-project/node_modules/function-bind/.eslintrc +21 -0
  1579. package/template/SCMS/backend-project/node_modules/function-bind/.github/FUNDING.yml +12 -0
  1580. package/template/SCMS/backend-project/node_modules/function-bind/.github/SECURITY.md +3 -0
  1581. package/template/SCMS/backend-project/node_modules/function-bind/.nycrc +13 -0
  1582. package/template/SCMS/backend-project/node_modules/function-bind/CHANGELOG.md +136 -0
  1583. package/template/SCMS/backend-project/node_modules/function-bind/LICENSE +20 -0
  1584. package/template/SCMS/backend-project/node_modules/function-bind/README.md +46 -0
  1585. package/template/SCMS/backend-project/node_modules/function-bind/implementation.js +84 -0
  1586. package/template/SCMS/backend-project/node_modules/function-bind/index.js +5 -0
  1587. package/template/SCMS/backend-project/node_modules/function-bind/package.json +87 -0
  1588. package/template/SCMS/backend-project/node_modules/function-bind/test/.eslintrc +9 -0
  1589. package/template/SCMS/backend-project/node_modules/function-bind/test/index.js +252 -0
  1590. package/template/SCMS/backend-project/node_modules/generate-function/.travis.yml +3 -0
  1591. package/template/SCMS/backend-project/node_modules/generate-function/LICENSE +21 -0
  1592. package/template/SCMS/backend-project/node_modules/generate-function/README.md +89 -0
  1593. package/template/SCMS/backend-project/node_modules/generate-function/example.js +27 -0
  1594. package/template/SCMS/backend-project/node_modules/generate-function/index.js +181 -0
  1595. package/template/SCMS/backend-project/node_modules/generate-function/package.json +32 -0
  1596. package/template/SCMS/backend-project/node_modules/generate-function/test.js +49 -0
  1597. package/template/SCMS/backend-project/node_modules/get-intrinsic/.eslintrc +42 -0
  1598. package/template/SCMS/backend-project/node_modules/get-intrinsic/.github/FUNDING.yml +12 -0
  1599. package/template/SCMS/backend-project/node_modules/get-intrinsic/.nycrc +9 -0
  1600. package/template/SCMS/backend-project/node_modules/get-intrinsic/CHANGELOG.md +186 -0
  1601. package/template/SCMS/backend-project/node_modules/get-intrinsic/LICENSE +21 -0
  1602. package/template/SCMS/backend-project/node_modules/get-intrinsic/README.md +71 -0
  1603. package/template/SCMS/backend-project/node_modules/get-intrinsic/index.js +378 -0
  1604. package/template/SCMS/backend-project/node_modules/get-intrinsic/package.json +97 -0
  1605. package/template/SCMS/backend-project/node_modules/get-intrinsic/test/GetIntrinsic.js +274 -0
  1606. package/template/SCMS/backend-project/node_modules/get-proto/.eslintrc +10 -0
  1607. package/template/SCMS/backend-project/node_modules/get-proto/.github/FUNDING.yml +12 -0
  1608. package/template/SCMS/backend-project/node_modules/get-proto/.nycrc +9 -0
  1609. package/template/SCMS/backend-project/node_modules/get-proto/CHANGELOG.md +21 -0
  1610. package/template/SCMS/backend-project/node_modules/get-proto/LICENSE +21 -0
  1611. package/template/SCMS/backend-project/node_modules/get-proto/Object.getPrototypeOf.d.ts +5 -0
  1612. package/template/SCMS/backend-project/node_modules/get-proto/Object.getPrototypeOf.js +6 -0
  1613. package/template/SCMS/backend-project/node_modules/get-proto/README.md +50 -0
  1614. package/template/SCMS/backend-project/node_modules/get-proto/Reflect.getPrototypeOf.d.ts +3 -0
  1615. package/template/SCMS/backend-project/node_modules/get-proto/Reflect.getPrototypeOf.js +4 -0
  1616. package/template/SCMS/backend-project/node_modules/get-proto/index.d.ts +5 -0
  1617. package/template/SCMS/backend-project/node_modules/get-proto/index.js +27 -0
  1618. package/template/SCMS/backend-project/node_modules/get-proto/package.json +81 -0
  1619. package/template/SCMS/backend-project/node_modules/get-proto/test/index.js +68 -0
  1620. package/template/SCMS/backend-project/node_modules/get-proto/tsconfig.json +9 -0
  1621. package/template/SCMS/backend-project/node_modules/gopd/.eslintrc +16 -0
  1622. package/template/SCMS/backend-project/node_modules/gopd/.github/FUNDING.yml +12 -0
  1623. package/template/SCMS/backend-project/node_modules/gopd/CHANGELOG.md +45 -0
  1624. package/template/SCMS/backend-project/node_modules/gopd/LICENSE +21 -0
  1625. package/template/SCMS/backend-project/node_modules/gopd/README.md +40 -0
  1626. package/template/SCMS/backend-project/node_modules/gopd/gOPD.d.ts +1 -0
  1627. package/template/SCMS/backend-project/node_modules/gopd/gOPD.js +4 -0
  1628. package/template/SCMS/backend-project/node_modules/gopd/index.d.ts +5 -0
  1629. package/template/SCMS/backend-project/node_modules/gopd/index.js +15 -0
  1630. package/template/SCMS/backend-project/node_modules/gopd/package.json +77 -0
  1631. package/template/SCMS/backend-project/node_modules/gopd/test/index.js +36 -0
  1632. package/template/SCMS/backend-project/node_modules/gopd/tsconfig.json +9 -0
  1633. package/template/SCMS/backend-project/node_modules/has-symbols/.eslintrc +11 -0
  1634. package/template/SCMS/backend-project/node_modules/has-symbols/.github/FUNDING.yml +12 -0
  1635. package/template/SCMS/backend-project/node_modules/has-symbols/.nycrc +9 -0
  1636. package/template/SCMS/backend-project/node_modules/has-symbols/CHANGELOG.md +91 -0
  1637. package/template/SCMS/backend-project/node_modules/has-symbols/LICENSE +21 -0
  1638. package/template/SCMS/backend-project/node_modules/has-symbols/README.md +46 -0
  1639. package/template/SCMS/backend-project/node_modules/has-symbols/index.d.ts +3 -0
  1640. package/template/SCMS/backend-project/node_modules/has-symbols/index.js +14 -0
  1641. package/template/SCMS/backend-project/node_modules/has-symbols/package.json +111 -0
  1642. package/template/SCMS/backend-project/node_modules/has-symbols/shams.d.ts +3 -0
  1643. package/template/SCMS/backend-project/node_modules/has-symbols/shams.js +45 -0
  1644. package/template/SCMS/backend-project/node_modules/has-symbols/test/index.js +22 -0
  1645. package/template/SCMS/backend-project/node_modules/has-symbols/test/shams/core-js.js +29 -0
  1646. package/template/SCMS/backend-project/node_modules/has-symbols/test/shams/get-own-property-symbols.js +29 -0
  1647. package/template/SCMS/backend-project/node_modules/has-symbols/test/tests.js +58 -0
  1648. package/template/SCMS/backend-project/node_modules/has-symbols/tsconfig.json +10 -0
  1649. package/template/SCMS/backend-project/node_modules/hasown/.github/FUNDING.yml +12 -0
  1650. package/template/SCMS/backend-project/node_modules/hasown/.nycrc +13 -0
  1651. package/template/SCMS/backend-project/node_modules/hasown/CHANGELOG.md +58 -0
  1652. package/template/SCMS/backend-project/node_modules/hasown/LICENSE +21 -0
  1653. package/template/SCMS/backend-project/node_modules/hasown/README.md +40 -0
  1654. package/template/SCMS/backend-project/node_modules/hasown/eslint.config.mjs +6 -0
  1655. package/template/SCMS/backend-project/node_modules/hasown/index.d.ts +3 -0
  1656. package/template/SCMS/backend-project/node_modules/hasown/index.js +8 -0
  1657. package/template/SCMS/backend-project/node_modules/hasown/package.json +91 -0
  1658. package/template/SCMS/backend-project/node_modules/hasown/tsconfig.json +6 -0
  1659. package/template/SCMS/backend-project/node_modules/http-errors/HISTORY.md +186 -0
  1660. package/template/SCMS/backend-project/node_modules/http-errors/LICENSE +23 -0
  1661. package/template/SCMS/backend-project/node_modules/http-errors/README.md +169 -0
  1662. package/template/SCMS/backend-project/node_modules/http-errors/index.js +290 -0
  1663. package/template/SCMS/backend-project/node_modules/http-errors/package.json +54 -0
  1664. package/template/SCMS/backend-project/node_modules/iconv-lite/Changelog.md +162 -0
  1665. package/template/SCMS/backend-project/node_modules/iconv-lite/LICENSE +21 -0
  1666. package/template/SCMS/backend-project/node_modules/iconv-lite/README.md +156 -0
  1667. package/template/SCMS/backend-project/node_modules/iconv-lite/encodings/dbcs-codec.js +555 -0
  1668. package/template/SCMS/backend-project/node_modules/iconv-lite/encodings/dbcs-data.js +176 -0
  1669. package/template/SCMS/backend-project/node_modules/iconv-lite/encodings/index.js +22 -0
  1670. package/template/SCMS/backend-project/node_modules/iconv-lite/encodings/internal.js +188 -0
  1671. package/template/SCMS/backend-project/node_modules/iconv-lite/encodings/sbcs-codec.js +72 -0
  1672. package/template/SCMS/backend-project/node_modules/iconv-lite/encodings/sbcs-data-generated.js +451 -0
  1673. package/template/SCMS/backend-project/node_modules/iconv-lite/encodings/sbcs-data.js +174 -0
  1674. package/template/SCMS/backend-project/node_modules/iconv-lite/encodings/tables/big5-added.json +122 -0
  1675. package/template/SCMS/backend-project/node_modules/iconv-lite/encodings/tables/cp936.json +264 -0
  1676. package/template/SCMS/backend-project/node_modules/iconv-lite/encodings/tables/cp949.json +273 -0
  1677. package/template/SCMS/backend-project/node_modules/iconv-lite/encodings/tables/cp950.json +177 -0
  1678. package/template/SCMS/backend-project/node_modules/iconv-lite/encodings/tables/eucjp.json +182 -0
  1679. package/template/SCMS/backend-project/node_modules/iconv-lite/encodings/tables/gb18030-ranges.json +1 -0
  1680. package/template/SCMS/backend-project/node_modules/iconv-lite/encodings/tables/gbk-added.json +55 -0
  1681. package/template/SCMS/backend-project/node_modules/iconv-lite/encodings/tables/shiftjis.json +125 -0
  1682. package/template/SCMS/backend-project/node_modules/iconv-lite/encodings/utf16.js +177 -0
  1683. package/template/SCMS/backend-project/node_modules/iconv-lite/encodings/utf7.js +290 -0
  1684. package/template/SCMS/backend-project/node_modules/iconv-lite/lib/bom-handling.js +52 -0
  1685. package/template/SCMS/backend-project/node_modules/iconv-lite/lib/extend-node.js +217 -0
  1686. package/template/SCMS/backend-project/node_modules/iconv-lite/lib/index.d.ts +24 -0
  1687. package/template/SCMS/backend-project/node_modules/iconv-lite/lib/index.js +153 -0
  1688. package/template/SCMS/backend-project/node_modules/iconv-lite/lib/streams.js +121 -0
  1689. package/template/SCMS/backend-project/node_modules/iconv-lite/package.json +46 -0
  1690. package/template/SCMS/backend-project/node_modules/inherits/LICENSE +16 -0
  1691. package/template/SCMS/backend-project/node_modules/inherits/README.md +42 -0
  1692. package/template/SCMS/backend-project/node_modules/inherits/inherits.js +9 -0
  1693. package/template/SCMS/backend-project/node_modules/inherits/inherits_browser.js +27 -0
  1694. package/template/SCMS/backend-project/node_modules/inherits/package.json +29 -0
  1695. package/template/SCMS/backend-project/node_modules/ipaddr.js/LICENSE +19 -0
  1696. package/template/SCMS/backend-project/node_modules/ipaddr.js/README.md +233 -0
  1697. package/template/SCMS/backend-project/node_modules/ipaddr.js/ipaddr.min.js +1 -0
  1698. package/template/SCMS/backend-project/node_modules/ipaddr.js/lib/ipaddr.js +673 -0
  1699. package/template/SCMS/backend-project/node_modules/ipaddr.js/lib/ipaddr.js.d.ts +68 -0
  1700. package/template/SCMS/backend-project/node_modules/ipaddr.js/package.json +35 -0
  1701. package/template/SCMS/backend-project/node_modules/is-property/LICENSE +22 -0
  1702. package/template/SCMS/backend-project/node_modules/is-property/README.md +28 -0
  1703. package/template/SCMS/backend-project/node_modules/is-property/is-property.js +5 -0
  1704. package/template/SCMS/backend-project/node_modules/is-property/package.json +36 -0
  1705. package/template/SCMS/backend-project/node_modules/jsonwebtoken/LICENSE +21 -0
  1706. package/template/SCMS/backend-project/node_modules/jsonwebtoken/README.md +396 -0
  1707. package/template/SCMS/backend-project/node_modules/jsonwebtoken/decode.js +30 -0
  1708. package/template/SCMS/backend-project/node_modules/jsonwebtoken/index.js +8 -0
  1709. package/template/SCMS/backend-project/node_modules/jsonwebtoken/lib/JsonWebTokenError.js +14 -0
  1710. package/template/SCMS/backend-project/node_modules/jsonwebtoken/lib/NotBeforeError.js +13 -0
  1711. package/template/SCMS/backend-project/node_modules/jsonwebtoken/lib/TokenExpiredError.js +13 -0
  1712. package/template/SCMS/backend-project/node_modules/jsonwebtoken/lib/asymmetricKeyDetailsSupported.js +3 -0
  1713. package/template/SCMS/backend-project/node_modules/jsonwebtoken/lib/psSupported.js +3 -0
  1714. package/template/SCMS/backend-project/node_modules/jsonwebtoken/lib/rsaPssKeyDetailsSupported.js +3 -0
  1715. package/template/SCMS/backend-project/node_modules/jsonwebtoken/lib/timespan.js +18 -0
  1716. package/template/SCMS/backend-project/node_modules/jsonwebtoken/lib/validateAsymmetricKey.js +66 -0
  1717. package/template/SCMS/backend-project/node_modules/jsonwebtoken/node_modules/ms/index.js +162 -0
  1718. package/template/SCMS/backend-project/node_modules/jsonwebtoken/node_modules/ms/license.md +21 -0
  1719. package/template/SCMS/backend-project/node_modules/jsonwebtoken/node_modules/ms/package.json +38 -0
  1720. package/template/SCMS/backend-project/node_modules/jsonwebtoken/node_modules/ms/readme.md +59 -0
  1721. package/template/SCMS/backend-project/node_modules/jsonwebtoken/package.json +70 -0
  1722. package/template/SCMS/backend-project/node_modules/jsonwebtoken/sign.js +253 -0
  1723. package/template/SCMS/backend-project/node_modules/jsonwebtoken/verify.js +263 -0
  1724. package/template/SCMS/backend-project/node_modules/jwa/LICENSE +17 -0
  1725. package/template/SCMS/backend-project/node_modules/jwa/README.md +150 -0
  1726. package/template/SCMS/backend-project/node_modules/jwa/index.js +266 -0
  1727. package/template/SCMS/backend-project/node_modules/jwa/opslevel.yml +6 -0
  1728. package/template/SCMS/backend-project/node_modules/jwa/package.json +37 -0
  1729. package/template/SCMS/backend-project/node_modules/jws/CHANGELOG.md +56 -0
  1730. package/template/SCMS/backend-project/node_modules/jws/LICENSE +17 -0
  1731. package/template/SCMS/backend-project/node_modules/jws/index.js +22 -0
  1732. package/template/SCMS/backend-project/node_modules/jws/lib/data-stream.js +55 -0
  1733. package/template/SCMS/backend-project/node_modules/jws/lib/sign-stream.js +83 -0
  1734. package/template/SCMS/backend-project/node_modules/jws/lib/tostring.js +10 -0
  1735. package/template/SCMS/backend-project/node_modules/jws/lib/verify-stream.js +125 -0
  1736. package/template/SCMS/backend-project/node_modules/jws/opslevel.yml +6 -0
  1737. package/template/SCMS/backend-project/node_modules/jws/package.json +34 -0
  1738. package/template/SCMS/backend-project/node_modules/jws/readme.md +255 -0
  1739. package/template/SCMS/backend-project/node_modules/lodash.includes/LICENSE +47 -0
  1740. package/template/SCMS/backend-project/node_modules/lodash.includes/README.md +18 -0
  1741. package/template/SCMS/backend-project/node_modules/lodash.includes/index.js +745 -0
  1742. package/template/SCMS/backend-project/node_modules/lodash.includes/package.json +17 -0
  1743. package/template/SCMS/backend-project/node_modules/lodash.isboolean/LICENSE +22 -0
  1744. package/template/SCMS/backend-project/node_modules/lodash.isboolean/README.md +18 -0
  1745. package/template/SCMS/backend-project/node_modules/lodash.isboolean/index.js +70 -0
  1746. package/template/SCMS/backend-project/node_modules/lodash.isboolean/package.json +17 -0
  1747. package/template/SCMS/backend-project/node_modules/lodash.isinteger/LICENSE +47 -0
  1748. package/template/SCMS/backend-project/node_modules/lodash.isinteger/README.md +18 -0
  1749. package/template/SCMS/backend-project/node_modules/lodash.isinteger/index.js +265 -0
  1750. package/template/SCMS/backend-project/node_modules/lodash.isinteger/package.json +17 -0
  1751. package/template/SCMS/backend-project/node_modules/lodash.isnumber/LICENSE +22 -0
  1752. package/template/SCMS/backend-project/node_modules/lodash.isnumber/README.md +18 -0
  1753. package/template/SCMS/backend-project/node_modules/lodash.isnumber/index.js +79 -0
  1754. package/template/SCMS/backend-project/node_modules/lodash.isnumber/package.json +17 -0
  1755. package/template/SCMS/backend-project/node_modules/lodash.isplainobject/LICENSE +47 -0
  1756. package/template/SCMS/backend-project/node_modules/lodash.isplainobject/README.md +18 -0
  1757. package/template/SCMS/backend-project/node_modules/lodash.isplainobject/index.js +139 -0
  1758. package/template/SCMS/backend-project/node_modules/lodash.isplainobject/package.json +17 -0
  1759. package/template/SCMS/backend-project/node_modules/lodash.isstring/LICENSE +22 -0
  1760. package/template/SCMS/backend-project/node_modules/lodash.isstring/README.md +18 -0
  1761. package/template/SCMS/backend-project/node_modules/lodash.isstring/index.js +95 -0
  1762. package/template/SCMS/backend-project/node_modules/lodash.isstring/package.json +17 -0
  1763. package/template/SCMS/backend-project/node_modules/lodash.once/LICENSE +47 -0
  1764. package/template/SCMS/backend-project/node_modules/lodash.once/README.md +18 -0
  1765. package/template/SCMS/backend-project/node_modules/lodash.once/index.js +294 -0
  1766. package/template/SCMS/backend-project/node_modules/lodash.once/package.json +17 -0
  1767. package/template/SCMS/backend-project/node_modules/long/LICENSE +202 -0
  1768. package/template/SCMS/backend-project/node_modules/long/README.md +286 -0
  1769. package/template/SCMS/backend-project/node_modules/long/index.d.ts +2 -0
  1770. package/template/SCMS/backend-project/node_modules/long/index.js +1581 -0
  1771. package/template/SCMS/backend-project/node_modules/long/package.json +58 -0
  1772. package/template/SCMS/backend-project/node_modules/long/types.d.ts +474 -0
  1773. package/template/SCMS/backend-project/node_modules/long/umd/index.d.ts +3 -0
  1774. package/template/SCMS/backend-project/node_modules/long/umd/index.js +1622 -0
  1775. package/template/SCMS/backend-project/node_modules/long/umd/package.json +3 -0
  1776. package/template/SCMS/backend-project/node_modules/long/umd/types.d.ts +474 -0
  1777. package/template/SCMS/backend-project/node_modules/lru.min/LICENSE +21 -0
  1778. package/template/SCMS/backend-project/node_modules/lru.min/README.md +392 -0
  1779. package/template/SCMS/backend-project/node_modules/lru.min/browser/lru.min.js +1 -0
  1780. package/template/SCMS/backend-project/node_modules/lru.min/lib/index.d.ts +38 -0
  1781. package/template/SCMS/backend-project/node_modules/lru.min/lib/index.js +248 -0
  1782. package/template/SCMS/backend-project/node_modules/lru.min/lib/index.mjs +227 -0
  1783. package/template/SCMS/backend-project/node_modules/lru.min/package.json +87 -0
  1784. package/template/SCMS/backend-project/node_modules/math-intrinsics/.eslintrc +16 -0
  1785. package/template/SCMS/backend-project/node_modules/math-intrinsics/.github/FUNDING.yml +12 -0
  1786. package/template/SCMS/backend-project/node_modules/math-intrinsics/CHANGELOG.md +24 -0
  1787. package/template/SCMS/backend-project/node_modules/math-intrinsics/LICENSE +21 -0
  1788. package/template/SCMS/backend-project/node_modules/math-intrinsics/README.md +50 -0
  1789. package/template/SCMS/backend-project/node_modules/math-intrinsics/abs.d.ts +1 -0
  1790. package/template/SCMS/backend-project/node_modules/math-intrinsics/abs.js +4 -0
  1791. package/template/SCMS/backend-project/node_modules/math-intrinsics/constants/maxArrayLength.d.ts +3 -0
  1792. package/template/SCMS/backend-project/node_modules/math-intrinsics/constants/maxArrayLength.js +4 -0
  1793. package/template/SCMS/backend-project/node_modules/math-intrinsics/constants/maxSafeInteger.d.ts +3 -0
  1794. package/template/SCMS/backend-project/node_modules/math-intrinsics/constants/maxSafeInteger.js +5 -0
  1795. package/template/SCMS/backend-project/node_modules/math-intrinsics/constants/maxValue.d.ts +3 -0
  1796. package/template/SCMS/backend-project/node_modules/math-intrinsics/constants/maxValue.js +5 -0
  1797. package/template/SCMS/backend-project/node_modules/math-intrinsics/floor.d.ts +1 -0
  1798. package/template/SCMS/backend-project/node_modules/math-intrinsics/floor.js +4 -0
  1799. package/template/SCMS/backend-project/node_modules/math-intrinsics/isFinite.d.ts +3 -0
  1800. package/template/SCMS/backend-project/node_modules/math-intrinsics/isFinite.js +12 -0
  1801. package/template/SCMS/backend-project/node_modules/math-intrinsics/isInteger.d.ts +3 -0
  1802. package/template/SCMS/backend-project/node_modules/math-intrinsics/isInteger.js +16 -0
  1803. package/template/SCMS/backend-project/node_modules/math-intrinsics/isNaN.d.ts +1 -0
  1804. package/template/SCMS/backend-project/node_modules/math-intrinsics/isNaN.js +6 -0
  1805. package/template/SCMS/backend-project/node_modules/math-intrinsics/isNegativeZero.d.ts +3 -0
  1806. package/template/SCMS/backend-project/node_modules/math-intrinsics/isNegativeZero.js +6 -0
  1807. package/template/SCMS/backend-project/node_modules/math-intrinsics/max.d.ts +1 -0
  1808. package/template/SCMS/backend-project/node_modules/math-intrinsics/max.js +4 -0
  1809. package/template/SCMS/backend-project/node_modules/math-intrinsics/min.d.ts +1 -0
  1810. package/template/SCMS/backend-project/node_modules/math-intrinsics/min.js +4 -0
  1811. package/template/SCMS/backend-project/node_modules/math-intrinsics/mod.d.ts +3 -0
  1812. package/template/SCMS/backend-project/node_modules/math-intrinsics/mod.js +9 -0
  1813. package/template/SCMS/backend-project/node_modules/math-intrinsics/package.json +86 -0
  1814. package/template/SCMS/backend-project/node_modules/math-intrinsics/pow.d.ts +1 -0
  1815. package/template/SCMS/backend-project/node_modules/math-intrinsics/pow.js +4 -0
  1816. package/template/SCMS/backend-project/node_modules/math-intrinsics/round.d.ts +1 -0
  1817. package/template/SCMS/backend-project/node_modules/math-intrinsics/round.js +4 -0
  1818. package/template/SCMS/backend-project/node_modules/math-intrinsics/sign.d.ts +3 -0
  1819. package/template/SCMS/backend-project/node_modules/math-intrinsics/sign.js +11 -0
  1820. package/template/SCMS/backend-project/node_modules/math-intrinsics/test/index.js +192 -0
  1821. package/template/SCMS/backend-project/node_modules/math-intrinsics/tsconfig.json +3 -0
  1822. package/template/SCMS/backend-project/node_modules/media-typer/HISTORY.md +22 -0
  1823. package/template/SCMS/backend-project/node_modules/media-typer/LICENSE +22 -0
  1824. package/template/SCMS/backend-project/node_modules/media-typer/README.md +81 -0
  1825. package/template/SCMS/backend-project/node_modules/media-typer/index.js +270 -0
  1826. package/template/SCMS/backend-project/node_modules/media-typer/package.json +26 -0
  1827. package/template/SCMS/backend-project/node_modules/merge-descriptors/HISTORY.md +21 -0
  1828. package/template/SCMS/backend-project/node_modules/merge-descriptors/LICENSE +23 -0
  1829. package/template/SCMS/backend-project/node_modules/merge-descriptors/README.md +49 -0
  1830. package/template/SCMS/backend-project/node_modules/merge-descriptors/index.js +60 -0
  1831. package/template/SCMS/backend-project/node_modules/merge-descriptors/package.json +39 -0
  1832. package/template/SCMS/backend-project/node_modules/methods/HISTORY.md +29 -0
  1833. package/template/SCMS/backend-project/node_modules/methods/LICENSE +24 -0
  1834. package/template/SCMS/backend-project/node_modules/methods/README.md +51 -0
  1835. package/template/SCMS/backend-project/node_modules/methods/index.js +69 -0
  1836. package/template/SCMS/backend-project/node_modules/methods/package.json +36 -0
  1837. package/template/SCMS/backend-project/node_modules/mime/CHANGELOG.md +164 -0
  1838. package/template/SCMS/backend-project/node_modules/mime/LICENSE +21 -0
  1839. package/template/SCMS/backend-project/node_modules/mime/README.md +90 -0
  1840. package/template/SCMS/backend-project/node_modules/mime/cli.js +8 -0
  1841. package/template/SCMS/backend-project/node_modules/mime/mime.js +108 -0
  1842. package/template/SCMS/backend-project/node_modules/mime/package.json +44 -0
  1843. package/template/SCMS/backend-project/node_modules/mime/src/build.js +53 -0
  1844. package/template/SCMS/backend-project/node_modules/mime/src/test.js +60 -0
  1845. package/template/SCMS/backend-project/node_modules/mime/types.json +1 -0
  1846. package/template/SCMS/backend-project/node_modules/mime-db/HISTORY.md +507 -0
  1847. package/template/SCMS/backend-project/node_modules/mime-db/LICENSE +23 -0
  1848. package/template/SCMS/backend-project/node_modules/mime-db/README.md +100 -0
  1849. package/template/SCMS/backend-project/node_modules/mime-db/db.json +8519 -0
  1850. package/template/SCMS/backend-project/node_modules/mime-db/index.js +12 -0
  1851. package/template/SCMS/backend-project/node_modules/mime-db/package.json +60 -0
  1852. package/template/SCMS/backend-project/node_modules/mime-types/HISTORY.md +397 -0
  1853. package/template/SCMS/backend-project/node_modules/mime-types/LICENSE +23 -0
  1854. package/template/SCMS/backend-project/node_modules/mime-types/README.md +113 -0
  1855. package/template/SCMS/backend-project/node_modules/mime-types/index.js +188 -0
  1856. package/template/SCMS/backend-project/node_modules/mime-types/package.json +44 -0
  1857. package/template/SCMS/backend-project/node_modules/ms/index.js +152 -0
  1858. package/template/SCMS/backend-project/node_modules/ms/license.md +21 -0
  1859. package/template/SCMS/backend-project/node_modules/ms/package.json +37 -0
  1860. package/template/SCMS/backend-project/node_modules/ms/readme.md +51 -0
  1861. package/template/SCMS/backend-project/node_modules/mysql2/License +19 -0
  1862. package/template/SCMS/backend-project/node_modules/mysql2/README.md +114 -0
  1863. package/template/SCMS/backend-project/node_modules/mysql2/index.d.ts +1 -0
  1864. package/template/SCMS/backend-project/node_modules/mysql2/index.js +77 -0
  1865. package/template/SCMS/backend-project/node_modules/mysql2/lib/auth_41.js +95 -0
  1866. package/template/SCMS/backend-project/node_modules/mysql2/lib/auth_plugins/caching_sha2_password.js +115 -0
  1867. package/template/SCMS/backend-project/node_modules/mysql2/lib/auth_plugins/caching_sha2_password.md +18 -0
  1868. package/template/SCMS/backend-project/node_modules/mysql2/lib/auth_plugins/index.js +8 -0
  1869. package/template/SCMS/backend-project/node_modules/mysql2/lib/auth_plugins/mysql_clear_password.js +17 -0
  1870. package/template/SCMS/backend-project/node_modules/mysql2/lib/auth_plugins/mysql_native_password.js +34 -0
  1871. package/template/SCMS/backend-project/node_modules/mysql2/lib/auth_plugins/sha256_password.js +74 -0
  1872. package/template/SCMS/backend-project/node_modules/mysql2/lib/base/connection.js +1139 -0
  1873. package/template/SCMS/backend-project/node_modules/mysql2/lib/base/pool.js +347 -0
  1874. package/template/SCMS/backend-project/node_modules/mysql2/lib/commands/auth_switch.js +151 -0
  1875. package/template/SCMS/backend-project/node_modules/mysql2/lib/commands/binlog_dump.js +109 -0
  1876. package/template/SCMS/backend-project/node_modules/mysql2/lib/commands/change_user.js +68 -0
  1877. package/template/SCMS/backend-project/node_modules/mysql2/lib/commands/client_handshake.js +386 -0
  1878. package/template/SCMS/backend-project/node_modules/mysql2/lib/commands/close_statement.js +18 -0
  1879. package/template/SCMS/backend-project/node_modules/mysql2/lib/commands/command.js +54 -0
  1880. package/template/SCMS/backend-project/node_modules/mysql2/lib/commands/execute.js +116 -0
  1881. package/template/SCMS/backend-project/node_modules/mysql2/lib/commands/index.js +29 -0
  1882. package/template/SCMS/backend-project/node_modules/mysql2/lib/commands/ping.js +36 -0
  1883. package/template/SCMS/backend-project/node_modules/mysql2/lib/commands/prepare.js +143 -0
  1884. package/template/SCMS/backend-project/node_modules/mysql2/lib/commands/query.js +365 -0
  1885. package/template/SCMS/backend-project/node_modules/mysql2/lib/commands/quit.js +29 -0
  1886. package/template/SCMS/backend-project/node_modules/mysql2/lib/commands/register_slave.js +27 -0
  1887. package/template/SCMS/backend-project/node_modules/mysql2/lib/commands/reset_connection.js +29 -0
  1888. package/template/SCMS/backend-project/node_modules/mysql2/lib/commands/server_handshake.js +205 -0
  1889. package/template/SCMS/backend-project/node_modules/mysql2/lib/compressed_protocol.js +153 -0
  1890. package/template/SCMS/backend-project/node_modules/mysql2/lib/connection.js +12 -0
  1891. package/template/SCMS/backend-project/node_modules/mysql2/lib/connection_config.js +300 -0
  1892. package/template/SCMS/backend-project/node_modules/mysql2/lib/constants/charset_encodings.js +317 -0
  1893. package/template/SCMS/backend-project/node_modules/mysql2/lib/constants/charsets.js +317 -0
  1894. package/template/SCMS/backend-project/node_modules/mysql2/lib/constants/client.js +39 -0
  1895. package/template/SCMS/backend-project/node_modules/mysql2/lib/constants/commands.js +37 -0
  1896. package/template/SCMS/backend-project/node_modules/mysql2/lib/constants/cursor.js +9 -0
  1897. package/template/SCMS/backend-project/node_modules/mysql2/lib/constants/encoding_charset.js +50 -0
  1898. package/template/SCMS/backend-project/node_modules/mysql2/lib/constants/errors.js +3973 -0
  1899. package/template/SCMS/backend-project/node_modules/mysql2/lib/constants/field_flags.js +20 -0
  1900. package/template/SCMS/backend-project/node_modules/mysql2/lib/constants/server_status.js +44 -0
  1901. package/template/SCMS/backend-project/node_modules/mysql2/lib/constants/session_track.js +11 -0
  1902. package/template/SCMS/backend-project/node_modules/mysql2/lib/constants/ssl_profiles.js +11 -0
  1903. package/template/SCMS/backend-project/node_modules/mysql2/lib/constants/types.js +64 -0
  1904. package/template/SCMS/backend-project/node_modules/mysql2/lib/create_connection.js +10 -0
  1905. package/template/SCMS/backend-project/node_modules/mysql2/lib/create_pool.js +10 -0
  1906. package/template/SCMS/backend-project/node_modules/mysql2/lib/create_pool_cluster.js +9 -0
  1907. package/template/SCMS/backend-project/node_modules/mysql2/lib/helpers.js +83 -0
  1908. package/template/SCMS/backend-project/node_modules/mysql2/lib/packet_parser.js +195 -0
  1909. package/template/SCMS/backend-project/node_modules/mysql2/lib/packets/auth_next_factor.js +35 -0
  1910. package/template/SCMS/backend-project/node_modules/mysql2/lib/packets/auth_switch_request.js +38 -0
  1911. package/template/SCMS/backend-project/node_modules/mysql2/lib/packets/auth_switch_request_more_data.js +33 -0
  1912. package/template/SCMS/backend-project/node_modules/mysql2/lib/packets/auth_switch_response.js +30 -0
  1913. package/template/SCMS/backend-project/node_modules/mysql2/lib/packets/binary_row.js +95 -0
  1914. package/template/SCMS/backend-project/node_modules/mysql2/lib/packets/binlog_dump.js +33 -0
  1915. package/template/SCMS/backend-project/node_modules/mysql2/lib/packets/binlog_query_statusvars.js +115 -0
  1916. package/template/SCMS/backend-project/node_modules/mysql2/lib/packets/change_user.js +97 -0
  1917. package/template/SCMS/backend-project/node_modules/mysql2/lib/packets/close_statement.js +21 -0
  1918. package/template/SCMS/backend-project/node_modules/mysql2/lib/packets/column_definition.js +291 -0
  1919. package/template/SCMS/backend-project/node_modules/mysql2/lib/packets/encode_parameter.js +69 -0
  1920. package/template/SCMS/backend-project/node_modules/mysql2/lib/packets/execute.js +177 -0
  1921. package/template/SCMS/backend-project/node_modules/mysql2/lib/packets/handshake.js +112 -0
  1922. package/template/SCMS/backend-project/node_modules/mysql2/lib/packets/handshake_response.js +173 -0
  1923. package/template/SCMS/backend-project/node_modules/mysql2/lib/packets/index.js +154 -0
  1924. package/template/SCMS/backend-project/node_modules/mysql2/lib/packets/packet.js +978 -0
  1925. package/template/SCMS/backend-project/node_modules/mysql2/lib/packets/prepare_statement.js +27 -0
  1926. package/template/SCMS/backend-project/node_modules/mysql2/lib/packets/prepared_statement_header.js +16 -0
  1927. package/template/SCMS/backend-project/node_modules/mysql2/lib/packets/query.js +102 -0
  1928. package/template/SCMS/backend-project/node_modules/mysql2/lib/packets/register_slave.js +46 -0
  1929. package/template/SCMS/backend-project/node_modules/mysql2/lib/packets/reset_connection.js +17 -0
  1930. package/template/SCMS/backend-project/node_modules/mysql2/lib/packets/resultset_header.js +124 -0
  1931. package/template/SCMS/backend-project/node_modules/mysql2/lib/packets/ssl_request.js +25 -0
  1932. package/template/SCMS/backend-project/node_modules/mysql2/lib/packets/text_row.js +47 -0
  1933. package/template/SCMS/backend-project/node_modules/mysql2/lib/parsers/binary_parser.js +235 -0
  1934. package/template/SCMS/backend-project/node_modules/mysql2/lib/parsers/parser_cache.js +68 -0
  1935. package/template/SCMS/backend-project/node_modules/mysql2/lib/parsers/static_binary_parser.js +213 -0
  1936. package/template/SCMS/backend-project/node_modules/mysql2/lib/parsers/static_text_parser.js +152 -0
  1937. package/template/SCMS/backend-project/node_modules/mysql2/lib/parsers/string.js +50 -0
  1938. package/template/SCMS/backend-project/node_modules/mysql2/lib/parsers/text_parser.js +214 -0
  1939. package/template/SCMS/backend-project/node_modules/mysql2/lib/pool.js +12 -0
  1940. package/template/SCMS/backend-project/node_modules/mysql2/lib/pool_cluster.js +375 -0
  1941. package/template/SCMS/backend-project/node_modules/mysql2/lib/pool_config.js +34 -0
  1942. package/template/SCMS/backend-project/node_modules/mysql2/lib/pool_connection.js +81 -0
  1943. package/template/SCMS/backend-project/node_modules/mysql2/lib/promise/capture_local_err.js +25 -0
  1944. package/template/SCMS/backend-project/node_modules/mysql2/lib/promise/connection.js +237 -0
  1945. package/template/SCMS/backend-project/node_modules/mysql2/lib/promise/inherit_events.js +27 -0
  1946. package/template/SCMS/backend-project/node_modules/mysql2/lib/promise/make_done_cb.js +16 -0
  1947. package/template/SCMS/backend-project/node_modules/mysql2/lib/promise/pool.js +118 -0
  1948. package/template/SCMS/backend-project/node_modules/mysql2/lib/promise/pool_cluster.js +59 -0
  1949. package/template/SCMS/backend-project/node_modules/mysql2/lib/promise/pool_connection.js +19 -0
  1950. package/template/SCMS/backend-project/node_modules/mysql2/lib/promise/prepared_statement_info.js +35 -0
  1951. package/template/SCMS/backend-project/node_modules/mysql2/lib/results_stream.js +38 -0
  1952. package/template/SCMS/backend-project/node_modules/mysql2/lib/server.js +37 -0
  1953. package/template/SCMS/backend-project/node_modules/mysql2/lib/tracing.js +81 -0
  1954. package/template/SCMS/backend-project/node_modules/mysql2/node_modules/iconv-lite/LICENSE +21 -0
  1955. package/template/SCMS/backend-project/node_modules/mysql2/node_modules/iconv-lite/README.md +138 -0
  1956. package/template/SCMS/backend-project/node_modules/mysql2/node_modules/iconv-lite/encodings/dbcs-codec.js +532 -0
  1957. package/template/SCMS/backend-project/node_modules/mysql2/node_modules/iconv-lite/encodings/dbcs-data.js +185 -0
  1958. package/template/SCMS/backend-project/node_modules/mysql2/node_modules/iconv-lite/encodings/index.js +23 -0
  1959. package/template/SCMS/backend-project/node_modules/mysql2/node_modules/iconv-lite/encodings/internal.js +218 -0
  1960. package/template/SCMS/backend-project/node_modules/mysql2/node_modules/iconv-lite/encodings/sbcs-codec.js +75 -0
  1961. package/template/SCMS/backend-project/node_modules/mysql2/node_modules/iconv-lite/encodings/sbcs-data-generated.js +451 -0
  1962. package/template/SCMS/backend-project/node_modules/mysql2/node_modules/iconv-lite/encodings/sbcs-data.js +178 -0
  1963. package/template/SCMS/backend-project/node_modules/mysql2/node_modules/iconv-lite/encodings/tables/big5-added.json +122 -0
  1964. package/template/SCMS/backend-project/node_modules/mysql2/node_modules/iconv-lite/encodings/tables/cp936.json +264 -0
  1965. package/template/SCMS/backend-project/node_modules/mysql2/node_modules/iconv-lite/encodings/tables/cp949.json +273 -0
  1966. package/template/SCMS/backend-project/node_modules/mysql2/node_modules/iconv-lite/encodings/tables/cp950.json +177 -0
  1967. package/template/SCMS/backend-project/node_modules/mysql2/node_modules/iconv-lite/encodings/tables/eucjp.json +182 -0
  1968. package/template/SCMS/backend-project/node_modules/mysql2/node_modules/iconv-lite/encodings/tables/gb18030-ranges.json +1 -0
  1969. package/template/SCMS/backend-project/node_modules/mysql2/node_modules/iconv-lite/encodings/tables/gbk-added.json +56 -0
  1970. package/template/SCMS/backend-project/node_modules/mysql2/node_modules/iconv-lite/encodings/tables/shiftjis.json +125 -0
  1971. package/template/SCMS/backend-project/node_modules/mysql2/node_modules/iconv-lite/encodings/utf16.js +187 -0
  1972. package/template/SCMS/backend-project/node_modules/mysql2/node_modules/iconv-lite/encodings/utf32.js +307 -0
  1973. package/template/SCMS/backend-project/node_modules/mysql2/node_modules/iconv-lite/encodings/utf7.js +283 -0
  1974. package/template/SCMS/backend-project/node_modules/mysql2/node_modules/iconv-lite/lib/bom-handling.js +48 -0
  1975. package/template/SCMS/backend-project/node_modules/mysql2/node_modules/iconv-lite/lib/helpers/merge-exports.js +13 -0
  1976. package/template/SCMS/backend-project/node_modules/mysql2/node_modules/iconv-lite/lib/index.d.ts +129 -0
  1977. package/template/SCMS/backend-project/node_modules/mysql2/node_modules/iconv-lite/lib/index.js +182 -0
  1978. package/template/SCMS/backend-project/node_modules/mysql2/node_modules/iconv-lite/lib/streams.js +105 -0
  1979. package/template/SCMS/backend-project/node_modules/mysql2/node_modules/iconv-lite/package.json +70 -0
  1980. package/template/SCMS/backend-project/node_modules/mysql2/node_modules/iconv-lite/types/encodings.d.ts +423 -0
  1981. package/template/SCMS/backend-project/node_modules/mysql2/package.json +95 -0
  1982. package/template/SCMS/backend-project/node_modules/mysql2/promise.d.ts +141 -0
  1983. package/template/SCMS/backend-project/node_modules/mysql2/promise.js +209 -0
  1984. package/template/SCMS/backend-project/node_modules/mysql2/typings/mysql/LICENSE.txt +15 -0
  1985. package/template/SCMS/backend-project/node_modules/mysql2/typings/mysql/index.d.ts +93 -0
  1986. package/template/SCMS/backend-project/node_modules/mysql2/typings/mysql/info.txt +1 -0
  1987. package/template/SCMS/backend-project/node_modules/mysql2/typings/mysql/lib/Auth.d.ts +30 -0
  1988. package/template/SCMS/backend-project/node_modules/mysql2/typings/mysql/lib/Connection.d.ts +456 -0
  1989. package/template/SCMS/backend-project/node_modules/mysql2/typings/mysql/lib/Pool.d.ts +78 -0
  1990. package/template/SCMS/backend-project/node_modules/mysql2/typings/mysql/lib/PoolCluster.d.ts +92 -0
  1991. package/template/SCMS/backend-project/node_modules/mysql2/typings/mysql/lib/PoolConnection.d.ts +11 -0
  1992. package/template/SCMS/backend-project/node_modules/mysql2/typings/mysql/lib/Server.d.ts +11 -0
  1993. package/template/SCMS/backend-project/node_modules/mysql2/typings/mysql/lib/Tracing.d.ts +71 -0
  1994. package/template/SCMS/backend-project/node_modules/mysql2/typings/mysql/lib/constants/CharsetToEncoding.d.ts +8 -0
  1995. package/template/SCMS/backend-project/node_modules/mysql2/typings/mysql/lib/constants/Charsets.d.ts +326 -0
  1996. package/template/SCMS/backend-project/node_modules/mysql2/typings/mysql/lib/constants/Types.d.ts +70 -0
  1997. package/template/SCMS/backend-project/node_modules/mysql2/typings/mysql/lib/constants/index.d.ts +5 -0
  1998. package/template/SCMS/backend-project/node_modules/mysql2/typings/mysql/lib/parsers/ParserCache.d.ts +4 -0
  1999. package/template/SCMS/backend-project/node_modules/mysql2/typings/mysql/lib/parsers/index.d.ts +18 -0
  2000. package/template/SCMS/backend-project/node_modules/mysql2/typings/mysql/lib/parsers/typeCast.d.ts +54 -0
  2001. package/template/SCMS/backend-project/node_modules/mysql2/typings/mysql/lib/protocol/packets/Field.d.ts +10 -0
  2002. package/template/SCMS/backend-project/node_modules/mysql2/typings/mysql/lib/protocol/packets/FieldPacket.d.ts +27 -0
  2003. package/template/SCMS/backend-project/node_modules/mysql2/typings/mysql/lib/protocol/packets/OkPacket.d.ts +23 -0
  2004. package/template/SCMS/backend-project/node_modules/mysql2/typings/mysql/lib/protocol/packets/ProcedurePacket.d.ts +13 -0
  2005. package/template/SCMS/backend-project/node_modules/mysql2/typings/mysql/lib/protocol/packets/ResultSetHeader.d.ts +18 -0
  2006. package/template/SCMS/backend-project/node_modules/mysql2/typings/mysql/lib/protocol/packets/RowDataPacket.d.ts +9 -0
  2007. package/template/SCMS/backend-project/node_modules/mysql2/typings/mysql/lib/protocol/packets/index.d.ts +28 -0
  2008. package/template/SCMS/backend-project/node_modules/mysql2/typings/mysql/lib/protocol/packets/params/ErrorPacketParams.d.ts +6 -0
  2009. package/template/SCMS/backend-project/node_modules/mysql2/typings/mysql/lib/protocol/packets/params/OkPacketParams.d.ts +9 -0
  2010. package/template/SCMS/backend-project/node_modules/mysql2/typings/mysql/lib/protocol/sequences/ExecutableBase.d.ts +41 -0
  2011. package/template/SCMS/backend-project/node_modules/mysql2/typings/mysql/lib/protocol/sequences/Prepare.d.ts +65 -0
  2012. package/template/SCMS/backend-project/node_modules/mysql2/typings/mysql/lib/protocol/sequences/Query.d.ts +235 -0
  2013. package/template/SCMS/backend-project/node_modules/mysql2/typings/mysql/lib/protocol/sequences/QueryableBase.d.ts +41 -0
  2014. package/template/SCMS/backend-project/node_modules/mysql2/typings/mysql/lib/protocol/sequences/Sequence.d.ts +5 -0
  2015. package/template/SCMS/backend-project/node_modules/mysql2/typings/mysql/lib/protocol/sequences/promise/ExecutableBase.d.ts +17 -0
  2016. package/template/SCMS/backend-project/node_modules/mysql2/typings/mysql/lib/protocol/sequences/promise/QueryableBase.d.ts +18 -0
  2017. package/template/SCMS/backend-project/node_modules/named-placeholders/LICENSE +21 -0
  2018. package/template/SCMS/backend-project/node_modules/named-placeholders/README.md +27 -0
  2019. package/template/SCMS/backend-project/node_modules/named-placeholders/index.js +179 -0
  2020. package/template/SCMS/backend-project/node_modules/named-placeholders/package.json +36 -0
  2021. package/template/SCMS/backend-project/node_modules/negotiator/HISTORY.md +108 -0
  2022. package/template/SCMS/backend-project/node_modules/negotiator/LICENSE +24 -0
  2023. package/template/SCMS/backend-project/node_modules/negotiator/README.md +203 -0
  2024. package/template/SCMS/backend-project/node_modules/negotiator/index.js +82 -0
  2025. package/template/SCMS/backend-project/node_modules/negotiator/lib/charset.js +169 -0
  2026. package/template/SCMS/backend-project/node_modules/negotiator/lib/encoding.js +184 -0
  2027. package/template/SCMS/backend-project/node_modules/negotiator/lib/language.js +179 -0
  2028. package/template/SCMS/backend-project/node_modules/negotiator/lib/mediaType.js +294 -0
  2029. package/template/SCMS/backend-project/node_modules/negotiator/package.json +42 -0
  2030. package/template/SCMS/backend-project/node_modules/object-assign/index.js +90 -0
  2031. package/template/SCMS/backend-project/node_modules/object-assign/license +21 -0
  2032. package/template/SCMS/backend-project/node_modules/object-assign/package.json +42 -0
  2033. package/template/SCMS/backend-project/node_modules/object-assign/readme.md +61 -0
  2034. package/template/SCMS/backend-project/node_modules/object-inspect/.eslintrc +53 -0
  2035. package/template/SCMS/backend-project/node_modules/object-inspect/.github/FUNDING.yml +12 -0
  2036. package/template/SCMS/backend-project/node_modules/object-inspect/.nycrc +13 -0
  2037. package/template/SCMS/backend-project/node_modules/object-inspect/CHANGELOG.md +424 -0
  2038. package/template/SCMS/backend-project/node_modules/object-inspect/LICENSE +21 -0
  2039. package/template/SCMS/backend-project/node_modules/object-inspect/example/all.js +23 -0
  2040. package/template/SCMS/backend-project/node_modules/object-inspect/example/circular.js +6 -0
  2041. package/template/SCMS/backend-project/node_modules/object-inspect/example/fn.js +5 -0
  2042. package/template/SCMS/backend-project/node_modules/object-inspect/example/inspect.js +10 -0
  2043. package/template/SCMS/backend-project/node_modules/object-inspect/index.js +544 -0
  2044. package/template/SCMS/backend-project/node_modules/object-inspect/package-support.json +20 -0
  2045. package/template/SCMS/backend-project/node_modules/object-inspect/package.json +105 -0
  2046. package/template/SCMS/backend-project/node_modules/object-inspect/readme.markdown +84 -0
  2047. package/template/SCMS/backend-project/node_modules/object-inspect/test/bigint.js +58 -0
  2048. package/template/SCMS/backend-project/node_modules/object-inspect/test/browser/dom.js +15 -0
  2049. package/template/SCMS/backend-project/node_modules/object-inspect/test/circular.js +16 -0
  2050. package/template/SCMS/backend-project/node_modules/object-inspect/test/deep.js +12 -0
  2051. package/template/SCMS/backend-project/node_modules/object-inspect/test/element.js +53 -0
  2052. package/template/SCMS/backend-project/node_modules/object-inspect/test/err.js +48 -0
  2053. package/template/SCMS/backend-project/node_modules/object-inspect/test/fakes.js +29 -0
  2054. package/template/SCMS/backend-project/node_modules/object-inspect/test/fn.js +76 -0
  2055. package/template/SCMS/backend-project/node_modules/object-inspect/test/global.js +17 -0
  2056. package/template/SCMS/backend-project/node_modules/object-inspect/test/has.js +15 -0
  2057. package/template/SCMS/backend-project/node_modules/object-inspect/test/holes.js +15 -0
  2058. package/template/SCMS/backend-project/node_modules/object-inspect/test/indent-option.js +271 -0
  2059. package/template/SCMS/backend-project/node_modules/object-inspect/test/inspect.js +139 -0
  2060. package/template/SCMS/backend-project/node_modules/object-inspect/test/lowbyte.js +12 -0
  2061. package/template/SCMS/backend-project/node_modules/object-inspect/test/number.js +58 -0
  2062. package/template/SCMS/backend-project/node_modules/object-inspect/test/quoteStyle.js +26 -0
  2063. package/template/SCMS/backend-project/node_modules/object-inspect/test/toStringTag.js +40 -0
  2064. package/template/SCMS/backend-project/node_modules/object-inspect/test/undef.js +12 -0
  2065. package/template/SCMS/backend-project/node_modules/object-inspect/test/values.js +261 -0
  2066. package/template/SCMS/backend-project/node_modules/object-inspect/test-core-js.js +26 -0
  2067. package/template/SCMS/backend-project/node_modules/object-inspect/util.inspect.js +1 -0
  2068. package/template/SCMS/backend-project/node_modules/on-finished/HISTORY.md +98 -0
  2069. package/template/SCMS/backend-project/node_modules/on-finished/LICENSE +23 -0
  2070. package/template/SCMS/backend-project/node_modules/on-finished/README.md +162 -0
  2071. package/template/SCMS/backend-project/node_modules/on-finished/index.js +234 -0
  2072. package/template/SCMS/backend-project/node_modules/on-finished/package.json +39 -0
  2073. package/template/SCMS/backend-project/node_modules/parseurl/HISTORY.md +58 -0
  2074. package/template/SCMS/backend-project/node_modules/parseurl/LICENSE +24 -0
  2075. package/template/SCMS/backend-project/node_modules/parseurl/README.md +133 -0
  2076. package/template/SCMS/backend-project/node_modules/parseurl/index.js +158 -0
  2077. package/template/SCMS/backend-project/node_modules/parseurl/package.json +40 -0
  2078. package/template/SCMS/backend-project/node_modules/path-to-regexp/LICENSE +21 -0
  2079. package/template/SCMS/backend-project/node_modules/path-to-regexp/Readme.md +35 -0
  2080. package/template/SCMS/backend-project/node_modules/path-to-regexp/index.js +158 -0
  2081. package/template/SCMS/backend-project/node_modules/path-to-regexp/package.json +30 -0
  2082. package/template/SCMS/backend-project/node_modules/proxy-addr/HISTORY.md +161 -0
  2083. package/template/SCMS/backend-project/node_modules/proxy-addr/LICENSE +22 -0
  2084. package/template/SCMS/backend-project/node_modules/proxy-addr/README.md +139 -0
  2085. package/template/SCMS/backend-project/node_modules/proxy-addr/index.js +327 -0
  2086. package/template/SCMS/backend-project/node_modules/proxy-addr/package.json +47 -0
  2087. package/template/SCMS/backend-project/node_modules/qs/.editorconfig +46 -0
  2088. package/template/SCMS/backend-project/node_modules/qs/.github/FUNDING.yml +12 -0
  2089. package/template/SCMS/backend-project/node_modules/qs/.github/SECURITY.md +11 -0
  2090. package/template/SCMS/backend-project/node_modules/qs/.github/THREAT_MODEL.md +78 -0
  2091. package/template/SCMS/backend-project/node_modules/qs/.nycrc +13 -0
  2092. package/template/SCMS/backend-project/node_modules/qs/CHANGELOG.md +822 -0
  2093. package/template/SCMS/backend-project/node_modules/qs/LICENSE.md +29 -0
  2094. package/template/SCMS/backend-project/node_modules/qs/README.md +758 -0
  2095. package/template/SCMS/backend-project/node_modules/qs/dist/qs.js +141 -0
  2096. package/template/SCMS/backend-project/node_modules/qs/eslint.config.mjs +57 -0
  2097. package/template/SCMS/backend-project/node_modules/qs/lib/formats.js +23 -0
  2098. package/template/SCMS/backend-project/node_modules/qs/lib/index.js +11 -0
  2099. package/template/SCMS/backend-project/node_modules/qs/lib/parse.js +403 -0
  2100. package/template/SCMS/backend-project/node_modules/qs/lib/stringify.js +363 -0
  2101. package/template/SCMS/backend-project/node_modules/qs/lib/utils.js +342 -0
  2102. package/template/SCMS/backend-project/node_modules/qs/package.json +94 -0
  2103. package/template/SCMS/backend-project/node_modules/qs/test/empty-keys-cases.js +267 -0
  2104. package/template/SCMS/backend-project/node_modules/qs/test/parse.js +1703 -0
  2105. package/template/SCMS/backend-project/node_modules/qs/test/stringify.js +1448 -0
  2106. package/template/SCMS/backend-project/node_modules/qs/test/utils.js +432 -0
  2107. package/template/SCMS/backend-project/node_modules/range-parser/HISTORY.md +56 -0
  2108. package/template/SCMS/backend-project/node_modules/range-parser/LICENSE +23 -0
  2109. package/template/SCMS/backend-project/node_modules/range-parser/README.md +84 -0
  2110. package/template/SCMS/backend-project/node_modules/range-parser/index.js +162 -0
  2111. package/template/SCMS/backend-project/node_modules/range-parser/package.json +44 -0
  2112. package/template/SCMS/backend-project/node_modules/raw-body/LICENSE +22 -0
  2113. package/template/SCMS/backend-project/node_modules/raw-body/README.md +223 -0
  2114. package/template/SCMS/backend-project/node_modules/raw-body/index.d.ts +87 -0
  2115. package/template/SCMS/backend-project/node_modules/raw-body/index.js +336 -0
  2116. package/template/SCMS/backend-project/node_modules/raw-body/package.json +47 -0
  2117. package/template/SCMS/backend-project/node_modules/safe-buffer/LICENSE +21 -0
  2118. package/template/SCMS/backend-project/node_modules/safe-buffer/README.md +584 -0
  2119. package/template/SCMS/backend-project/node_modules/safe-buffer/index.d.ts +187 -0
  2120. package/template/SCMS/backend-project/node_modules/safe-buffer/index.js +65 -0
  2121. package/template/SCMS/backend-project/node_modules/safe-buffer/package.json +51 -0
  2122. package/template/SCMS/backend-project/node_modules/safer-buffer/LICENSE +21 -0
  2123. package/template/SCMS/backend-project/node_modules/safer-buffer/Porting-Buffer.md +268 -0
  2124. package/template/SCMS/backend-project/node_modules/safer-buffer/Readme.md +156 -0
  2125. package/template/SCMS/backend-project/node_modules/safer-buffer/dangerous.js +58 -0
  2126. package/template/SCMS/backend-project/node_modules/safer-buffer/package.json +34 -0
  2127. package/template/SCMS/backend-project/node_modules/safer-buffer/safer.js +77 -0
  2128. package/template/SCMS/backend-project/node_modules/safer-buffer/tests.js +406 -0
  2129. package/template/SCMS/backend-project/node_modules/semver/LICENSE +15 -0
  2130. package/template/SCMS/backend-project/node_modules/semver/README.md +680 -0
  2131. package/template/SCMS/backend-project/node_modules/semver/bin/semver.js +195 -0
  2132. package/template/SCMS/backend-project/node_modules/semver/classes/comparator.js +143 -0
  2133. package/template/SCMS/backend-project/node_modules/semver/classes/index.js +7 -0
  2134. package/template/SCMS/backend-project/node_modules/semver/classes/range.js +564 -0
  2135. package/template/SCMS/backend-project/node_modules/semver/classes/semver.js +333 -0
  2136. package/template/SCMS/backend-project/node_modules/semver/functions/clean.js +8 -0
  2137. package/template/SCMS/backend-project/node_modules/semver/functions/cmp.js +54 -0
  2138. package/template/SCMS/backend-project/node_modules/semver/functions/coerce.js +62 -0
  2139. package/template/SCMS/backend-project/node_modules/semver/functions/compare-build.js +9 -0
  2140. package/template/SCMS/backend-project/node_modules/semver/functions/compare-loose.js +5 -0
  2141. package/template/SCMS/backend-project/node_modules/semver/functions/compare.js +7 -0
  2142. package/template/SCMS/backend-project/node_modules/semver/functions/diff.js +60 -0
  2143. package/template/SCMS/backend-project/node_modules/semver/functions/eq.js +5 -0
  2144. package/template/SCMS/backend-project/node_modules/semver/functions/gt.js +5 -0
  2145. package/template/SCMS/backend-project/node_modules/semver/functions/gte.js +5 -0
  2146. package/template/SCMS/backend-project/node_modules/semver/functions/inc.js +21 -0
  2147. package/template/SCMS/backend-project/node_modules/semver/functions/lt.js +5 -0
  2148. package/template/SCMS/backend-project/node_modules/semver/functions/lte.js +5 -0
  2149. package/template/SCMS/backend-project/node_modules/semver/functions/major.js +5 -0
  2150. package/template/SCMS/backend-project/node_modules/semver/functions/minor.js +5 -0
  2151. package/template/SCMS/backend-project/node_modules/semver/functions/neq.js +5 -0
  2152. package/template/SCMS/backend-project/node_modules/semver/functions/parse.js +18 -0
  2153. package/template/SCMS/backend-project/node_modules/semver/functions/patch.js +5 -0
  2154. package/template/SCMS/backend-project/node_modules/semver/functions/prerelease.js +8 -0
  2155. package/template/SCMS/backend-project/node_modules/semver/functions/rcompare.js +5 -0
  2156. package/template/SCMS/backend-project/node_modules/semver/functions/rsort.js +5 -0
  2157. package/template/SCMS/backend-project/node_modules/semver/functions/satisfies.js +12 -0
  2158. package/template/SCMS/backend-project/node_modules/semver/functions/sort.js +5 -0
  2159. package/template/SCMS/backend-project/node_modules/semver/functions/truncate.js +48 -0
  2160. package/template/SCMS/backend-project/node_modules/semver/functions/valid.js +8 -0
  2161. package/template/SCMS/backend-project/node_modules/semver/index.js +93 -0
  2162. package/template/SCMS/backend-project/node_modules/semver/internal/constants.js +37 -0
  2163. package/template/SCMS/backend-project/node_modules/semver/internal/debug.js +11 -0
  2164. package/template/SCMS/backend-project/node_modules/semver/internal/identifiers.js +29 -0
  2165. package/template/SCMS/backend-project/node_modules/semver/internal/lrucache.js +42 -0
  2166. package/template/SCMS/backend-project/node_modules/semver/internal/parse-options.js +17 -0
  2167. package/template/SCMS/backend-project/node_modules/semver/internal/re.js +223 -0
  2168. package/template/SCMS/backend-project/node_modules/semver/package.json +78 -0
  2169. package/template/SCMS/backend-project/node_modules/semver/preload.js +4 -0
  2170. package/template/SCMS/backend-project/node_modules/semver/range.bnf +17 -0
  2171. package/template/SCMS/backend-project/node_modules/semver/ranges/gtr.js +6 -0
  2172. package/template/SCMS/backend-project/node_modules/semver/ranges/intersects.js +9 -0
  2173. package/template/SCMS/backend-project/node_modules/semver/ranges/ltr.js +6 -0
  2174. package/template/SCMS/backend-project/node_modules/semver/ranges/max-satisfying.js +27 -0
  2175. package/template/SCMS/backend-project/node_modules/semver/ranges/min-satisfying.js +26 -0
  2176. package/template/SCMS/backend-project/node_modules/semver/ranges/min-version.js +63 -0
  2177. package/template/SCMS/backend-project/node_modules/semver/ranges/outside.js +82 -0
  2178. package/template/SCMS/backend-project/node_modules/semver/ranges/simplify.js +49 -0
  2179. package/template/SCMS/backend-project/node_modules/semver/ranges/subset.js +249 -0
  2180. package/template/SCMS/backend-project/node_modules/semver/ranges/to-comparators.js +10 -0
  2181. package/template/SCMS/backend-project/node_modules/semver/ranges/valid.js +13 -0
  2182. package/template/SCMS/backend-project/node_modules/send/HISTORY.md +538 -0
  2183. package/template/SCMS/backend-project/node_modules/send/LICENSE +23 -0
  2184. package/template/SCMS/backend-project/node_modules/send/README.md +327 -0
  2185. package/template/SCMS/backend-project/node_modules/send/SECURITY.md +24 -0
  2186. package/template/SCMS/backend-project/node_modules/send/index.js +1142 -0
  2187. package/template/SCMS/backend-project/node_modules/send/node_modules/ms/index.js +162 -0
  2188. package/template/SCMS/backend-project/node_modules/send/node_modules/ms/license.md +21 -0
  2189. package/template/SCMS/backend-project/node_modules/send/node_modules/ms/package.json +38 -0
  2190. package/template/SCMS/backend-project/node_modules/send/node_modules/ms/readme.md +59 -0
  2191. package/template/SCMS/backend-project/node_modules/send/package.json +62 -0
  2192. package/template/SCMS/backend-project/node_modules/serve-static/HISTORY.md +493 -0
  2193. package/template/SCMS/backend-project/node_modules/serve-static/LICENSE +25 -0
  2194. package/template/SCMS/backend-project/node_modules/serve-static/README.md +257 -0
  2195. package/template/SCMS/backend-project/node_modules/serve-static/index.js +209 -0
  2196. package/template/SCMS/backend-project/node_modules/serve-static/package.json +42 -0
  2197. package/template/SCMS/backend-project/node_modules/setprototypeof/LICENSE +13 -0
  2198. package/template/SCMS/backend-project/node_modules/setprototypeof/README.md +31 -0
  2199. package/template/SCMS/backend-project/node_modules/setprototypeof/index.d.ts +2 -0
  2200. package/template/SCMS/backend-project/node_modules/setprototypeof/index.js +17 -0
  2201. package/template/SCMS/backend-project/node_modules/setprototypeof/package.json +38 -0
  2202. package/template/SCMS/backend-project/node_modules/setprototypeof/test/index.js +24 -0
  2203. package/template/SCMS/backend-project/node_modules/side-channel/.editorconfig +9 -0
  2204. package/template/SCMS/backend-project/node_modules/side-channel/.eslintrc +12 -0
  2205. package/template/SCMS/backend-project/node_modules/side-channel/.github/FUNDING.yml +12 -0
  2206. package/template/SCMS/backend-project/node_modules/side-channel/.nycrc +13 -0
  2207. package/template/SCMS/backend-project/node_modules/side-channel/CHANGELOG.md +110 -0
  2208. package/template/SCMS/backend-project/node_modules/side-channel/LICENSE +21 -0
  2209. package/template/SCMS/backend-project/node_modules/side-channel/README.md +61 -0
  2210. package/template/SCMS/backend-project/node_modules/side-channel/index.d.ts +14 -0
  2211. package/template/SCMS/backend-project/node_modules/side-channel/index.js +43 -0
  2212. package/template/SCMS/backend-project/node_modules/side-channel/package.json +85 -0
  2213. package/template/SCMS/backend-project/node_modules/side-channel/test/index.js +104 -0
  2214. package/template/SCMS/backend-project/node_modules/side-channel/tsconfig.json +9 -0
  2215. package/template/SCMS/backend-project/node_modules/side-channel-list/.editorconfig +9 -0
  2216. package/template/SCMS/backend-project/node_modules/side-channel-list/.eslintrc +11 -0
  2217. package/template/SCMS/backend-project/node_modules/side-channel-list/.github/FUNDING.yml +12 -0
  2218. package/template/SCMS/backend-project/node_modules/side-channel-list/.nycrc +13 -0
  2219. package/template/SCMS/backend-project/node_modules/side-channel-list/CHANGELOG.md +36 -0
  2220. package/template/SCMS/backend-project/node_modules/side-channel-list/LICENSE +21 -0
  2221. package/template/SCMS/backend-project/node_modules/side-channel-list/README.md +62 -0
  2222. package/template/SCMS/backend-project/node_modules/side-channel-list/index.d.ts +13 -0
  2223. package/template/SCMS/backend-project/node_modules/side-channel-list/index.js +111 -0
  2224. package/template/SCMS/backend-project/node_modules/side-channel-list/list.d.ts +14 -0
  2225. package/template/SCMS/backend-project/node_modules/side-channel-list/package.json +77 -0
  2226. package/template/SCMS/backend-project/node_modules/side-channel-list/test/index.js +154 -0
  2227. package/template/SCMS/backend-project/node_modules/side-channel-list/tsconfig.json +9 -0
  2228. package/template/SCMS/backend-project/node_modules/side-channel-map/.editorconfig +9 -0
  2229. package/template/SCMS/backend-project/node_modules/side-channel-map/.eslintrc +11 -0
  2230. package/template/SCMS/backend-project/node_modules/side-channel-map/.github/FUNDING.yml +12 -0
  2231. package/template/SCMS/backend-project/node_modules/side-channel-map/.nycrc +13 -0
  2232. package/template/SCMS/backend-project/node_modules/side-channel-map/CHANGELOG.md +22 -0
  2233. package/template/SCMS/backend-project/node_modules/side-channel-map/LICENSE +21 -0
  2234. package/template/SCMS/backend-project/node_modules/side-channel-map/README.md +62 -0
  2235. package/template/SCMS/backend-project/node_modules/side-channel-map/index.d.ts +15 -0
  2236. package/template/SCMS/backend-project/node_modules/side-channel-map/index.js +68 -0
  2237. package/template/SCMS/backend-project/node_modules/side-channel-map/package.json +80 -0
  2238. package/template/SCMS/backend-project/node_modules/side-channel-map/test/index.js +114 -0
  2239. package/template/SCMS/backend-project/node_modules/side-channel-map/tsconfig.json +9 -0
  2240. package/template/SCMS/backend-project/node_modules/side-channel-weakmap/.editorconfig +9 -0
  2241. package/template/SCMS/backend-project/node_modules/side-channel-weakmap/.eslintrc +12 -0
  2242. package/template/SCMS/backend-project/node_modules/side-channel-weakmap/.github/FUNDING.yml +12 -0
  2243. package/template/SCMS/backend-project/node_modules/side-channel-weakmap/.nycrc +13 -0
  2244. package/template/SCMS/backend-project/node_modules/side-channel-weakmap/CHANGELOG.md +28 -0
  2245. package/template/SCMS/backend-project/node_modules/side-channel-weakmap/LICENSE +21 -0
  2246. package/template/SCMS/backend-project/node_modules/side-channel-weakmap/README.md +62 -0
  2247. package/template/SCMS/backend-project/node_modules/side-channel-weakmap/index.d.ts +15 -0
  2248. package/template/SCMS/backend-project/node_modules/side-channel-weakmap/index.js +84 -0
  2249. package/template/SCMS/backend-project/node_modules/side-channel-weakmap/package.json +87 -0
  2250. package/template/SCMS/backend-project/node_modules/side-channel-weakmap/test/index.js +114 -0
  2251. package/template/SCMS/backend-project/node_modules/side-channel-weakmap/tsconfig.json +9 -0
  2252. package/template/SCMS/backend-project/node_modules/sql-escaper/LICENSE +21 -0
  2253. package/template/SCMS/backend-project/node_modules/sql-escaper/README.md +424 -0
  2254. package/template/SCMS/backend-project/node_modules/sql-escaper/lib/index.d.ts +15 -0
  2255. package/template/SCMS/backend-project/node_modules/sql-escaper/lib/index.js +398 -0
  2256. package/template/SCMS/backend-project/node_modules/sql-escaper/lib/index.mjs +305 -0
  2257. package/template/SCMS/backend-project/node_modules/sql-escaper/lib/types.d.ts +5 -0
  2258. package/template/SCMS/backend-project/node_modules/sql-escaper/lib/types.js +2 -0
  2259. package/template/SCMS/backend-project/node_modules/sql-escaper/package.json +81 -0
  2260. package/template/SCMS/backend-project/node_modules/statuses/HISTORY.md +87 -0
  2261. package/template/SCMS/backend-project/node_modules/statuses/LICENSE +23 -0
  2262. package/template/SCMS/backend-project/node_modules/statuses/README.md +139 -0
  2263. package/template/SCMS/backend-project/node_modules/statuses/codes.json +65 -0
  2264. package/template/SCMS/backend-project/node_modules/statuses/index.js +146 -0
  2265. package/template/SCMS/backend-project/node_modules/statuses/package.json +49 -0
  2266. package/template/SCMS/backend-project/node_modules/toidentifier/HISTORY.md +9 -0
  2267. package/template/SCMS/backend-project/node_modules/toidentifier/LICENSE +21 -0
  2268. package/template/SCMS/backend-project/node_modules/toidentifier/README.md +61 -0
  2269. package/template/SCMS/backend-project/node_modules/toidentifier/index.js +32 -0
  2270. package/template/SCMS/backend-project/node_modules/toidentifier/package.json +38 -0
  2271. package/template/SCMS/backend-project/node_modules/type-is/HISTORY.md +259 -0
  2272. package/template/SCMS/backend-project/node_modules/type-is/LICENSE +23 -0
  2273. package/template/SCMS/backend-project/node_modules/type-is/README.md +170 -0
  2274. package/template/SCMS/backend-project/node_modules/type-is/index.js +266 -0
  2275. package/template/SCMS/backend-project/node_modules/type-is/package.json +45 -0
  2276. package/template/SCMS/backend-project/node_modules/undici-types/LICENSE +21 -0
  2277. package/template/SCMS/backend-project/node_modules/undici-types/README.md +6 -0
  2278. package/template/SCMS/backend-project/node_modules/undici-types/agent.d.ts +32 -0
  2279. package/template/SCMS/backend-project/node_modules/undici-types/api.d.ts +43 -0
  2280. package/template/SCMS/backend-project/node_modules/undici-types/balanced-pool.d.ts +30 -0
  2281. package/template/SCMS/backend-project/node_modules/undici-types/cache-interceptor.d.ts +179 -0
  2282. package/template/SCMS/backend-project/node_modules/undici-types/cache.d.ts +36 -0
  2283. package/template/SCMS/backend-project/node_modules/undici-types/client-stats.d.ts +15 -0
  2284. package/template/SCMS/backend-project/node_modules/undici-types/client.d.ts +123 -0
  2285. package/template/SCMS/backend-project/node_modules/undici-types/connector.d.ts +36 -0
  2286. package/template/SCMS/backend-project/node_modules/undici-types/content-type.d.ts +21 -0
  2287. package/template/SCMS/backend-project/node_modules/undici-types/cookies.d.ts +30 -0
  2288. package/template/SCMS/backend-project/node_modules/undici-types/diagnostics-channel.d.ts +74 -0
  2289. package/template/SCMS/backend-project/node_modules/undici-types/dispatcher.d.ts +279 -0
  2290. package/template/SCMS/backend-project/node_modules/undici-types/env-http-proxy-agent.d.ts +22 -0
  2291. package/template/SCMS/backend-project/node_modules/undici-types/errors.d.ts +177 -0
  2292. package/template/SCMS/backend-project/node_modules/undici-types/eventsource.d.ts +66 -0
  2293. package/template/SCMS/backend-project/node_modules/undici-types/fetch.d.ts +211 -0
  2294. package/template/SCMS/backend-project/node_modules/undici-types/formdata.d.ts +108 -0
  2295. package/template/SCMS/backend-project/node_modules/undici-types/global-dispatcher.d.ts +9 -0
  2296. package/template/SCMS/backend-project/node_modules/undici-types/global-origin.d.ts +7 -0
  2297. package/template/SCMS/backend-project/node_modules/undici-types/h2c-client.d.ts +73 -0
  2298. package/template/SCMS/backend-project/node_modules/undici-types/handlers.d.ts +15 -0
  2299. package/template/SCMS/backend-project/node_modules/undici-types/header.d.ts +160 -0
  2300. package/template/SCMS/backend-project/node_modules/undici-types/index.d.ts +91 -0
  2301. package/template/SCMS/backend-project/node_modules/undici-types/interceptors.d.ts +80 -0
  2302. package/template/SCMS/backend-project/node_modules/undici-types/mock-agent.d.ts +68 -0
  2303. package/template/SCMS/backend-project/node_modules/undici-types/mock-call-history.d.ts +111 -0
  2304. package/template/SCMS/backend-project/node_modules/undici-types/mock-client.d.ts +27 -0
  2305. package/template/SCMS/backend-project/node_modules/undici-types/mock-errors.d.ts +12 -0
  2306. package/template/SCMS/backend-project/node_modules/undici-types/mock-interceptor.d.ts +94 -0
  2307. package/template/SCMS/backend-project/node_modules/undici-types/mock-pool.d.ts +27 -0
  2308. package/template/SCMS/backend-project/node_modules/undici-types/package.json +55 -0
  2309. package/template/SCMS/backend-project/node_modules/undici-types/patch.d.ts +29 -0
  2310. package/template/SCMS/backend-project/node_modules/undici-types/pool-stats.d.ts +19 -0
  2311. package/template/SCMS/backend-project/node_modules/undici-types/pool.d.ts +41 -0
  2312. package/template/SCMS/backend-project/node_modules/undici-types/proxy-agent.d.ts +29 -0
  2313. package/template/SCMS/backend-project/node_modules/undici-types/readable.d.ts +68 -0
  2314. package/template/SCMS/backend-project/node_modules/undici-types/retry-agent.d.ts +8 -0
  2315. package/template/SCMS/backend-project/node_modules/undici-types/retry-handler.d.ts +125 -0
  2316. package/template/SCMS/backend-project/node_modules/undici-types/round-robin-pool.d.ts +41 -0
  2317. package/template/SCMS/backend-project/node_modules/undici-types/snapshot-agent.d.ts +109 -0
  2318. package/template/SCMS/backend-project/node_modules/undici-types/socks5-proxy-agent.d.ts +25 -0
  2319. package/template/SCMS/backend-project/node_modules/undici-types/util.d.ts +18 -0
  2320. package/template/SCMS/backend-project/node_modules/undici-types/utility.d.ts +7 -0
  2321. package/template/SCMS/backend-project/node_modules/undici-types/webidl.d.ts +347 -0
  2322. package/template/SCMS/backend-project/node_modules/undici-types/websocket.d.ts +188 -0
  2323. package/template/SCMS/backend-project/node_modules/unpipe/HISTORY.md +4 -0
  2324. package/template/SCMS/backend-project/node_modules/unpipe/LICENSE +22 -0
  2325. package/template/SCMS/backend-project/node_modules/unpipe/README.md +43 -0
  2326. package/template/SCMS/backend-project/node_modules/unpipe/index.js +69 -0
  2327. package/template/SCMS/backend-project/node_modules/unpipe/package.json +27 -0
  2328. package/template/SCMS/backend-project/node_modules/utils-merge/LICENSE +20 -0
  2329. package/template/SCMS/backend-project/node_modules/utils-merge/README.md +34 -0
  2330. package/template/SCMS/backend-project/node_modules/utils-merge/index.js +23 -0
  2331. package/template/SCMS/backend-project/node_modules/utils-merge/package.json +40 -0
  2332. package/template/SCMS/backend-project/node_modules/vary/HISTORY.md +39 -0
  2333. package/template/SCMS/backend-project/node_modules/vary/LICENSE +22 -0
  2334. package/template/SCMS/backend-project/node_modules/vary/README.md +101 -0
  2335. package/template/SCMS/backend-project/node_modules/vary/index.js +149 -0
  2336. package/template/SCMS/backend-project/node_modules/vary/package.json +43 -0
  2337. package/template/SCMS/backend-project/package-lock.json +1130 -0
  2338. package/template/SCMS/backend-project/package.json +19 -0
  2339. package/template/SCMS/backend-project/routes/auth.js +60 -0
  2340. package/template/SCMS/backend-project/routes/deliveries.js +95 -0
  2341. package/template/SCMS/backend-project/routes/reports.js +94 -0
  2342. package/template/SCMS/backend-project/routes/shipments.js +94 -0
  2343. package/template/SCMS/backend-project/routes/suppliers.js +39 -0
  2344. package/template/SCMS/backend-project/seed.js +25 -0
  2345. package/template/SCMS/backend-project/server.js +29 -0
  2346. package/template/SCMS/database/schema.sql +53 -0
  2347. package/template/SCMS/docs/ERD.md +145 -0
  2348. package/template/SCMS/frontend-project/README.md +16 -0
  2349. package/template/SCMS/frontend-project/eslint.config.js +21 -0
  2350. package/template/SCMS/frontend-project/index.html +13 -0
  2351. package/template/SCMS/frontend-project/package-lock.json +3167 -0
  2352. package/template/SCMS/frontend-project/package.json +31 -0
  2353. package/template/SCMS/frontend-project/public/favicon.svg +1 -0
  2354. package/template/SCMS/frontend-project/public/icons.svg +24 -0
  2355. package/template/SCMS/frontend-project/src/App.css +184 -0
  2356. package/template/SCMS/frontend-project/src/App.jsx +61 -0
  2357. package/template/SCMS/frontend-project/src/api/axios.js +32 -0
  2358. package/template/SCMS/frontend-project/src/assets/hero.png +0 -0
  2359. package/template/SCMS/frontend-project/src/assets/react.svg +1 -0
  2360. package/template/SCMS/frontend-project/src/assets/vite.svg +1 -0
  2361. package/template/SCMS/frontend-project/src/components/Alert.jsx +23 -0
  2362. package/template/SCMS/frontend-project/src/components/AuthLayout.jsx +37 -0
  2363. package/template/SCMS/frontend-project/src/components/Layout.jsx +72 -0
  2364. package/template/SCMS/frontend-project/src/context/AuthContext.jsx +46 -0
  2365. package/template/SCMS/frontend-project/src/index.css +6 -0
  2366. package/template/SCMS/frontend-project/src/main.jsx +10 -0
  2367. package/template/SCMS/frontend-project/src/pages/Delivery.jsx +294 -0
  2368. package/template/SCMS/frontend-project/src/pages/Login.jsx +76 -0
  2369. package/template/SCMS/frontend-project/src/pages/Reports.jsx +220 -0
  2370. package/template/SCMS/frontend-project/src/pages/Shipment.jsx +287 -0
  2371. package/template/SCMS/frontend-project/src/pages/SignUp.jsx +109 -0
  2372. package/template/SCMS/frontend-project/src/pages/Supplier.jsx +180 -0
  2373. package/template/SCMS/frontend-project/vite.config.js +16 -0
  2374. package/template/sms/Davina_Student_National_Practical_Exam_2026/README.md +93 -0
  2375. package/template/sms/Davina_Student_National_Practical_Exam_2026/backend-project/.env.example +6 -0
  2376. package/template/sms/Davina_Student_National_Practical_Exam_2026/backend-project/config/db.js +13 -0
  2377. package/template/sms/Davina_Student_National_Practical_Exam_2026/backend-project/middleware/auth.js +18 -0
  2378. package/template/sms/Davina_Student_National_Practical_Exam_2026/backend-project/package-lock.json +1130 -0
  2379. package/template/sms/Davina_Student_National_Practical_Exam_2026/backend-project/package.json +18 -0
  2380. package/template/sms/Davina_Student_National_Practical_Exam_2026/backend-project/routes/auth.js +53 -0
  2381. package/template/sms/Davina_Student_National_Practical_Exam_2026/backend-project/routes/products.js +44 -0
  2382. package/template/sms/Davina_Student_National_Practical_Exam_2026/backend-project/routes/reports.js +109 -0
  2383. package/template/sms/Davina_Student_National_Practical_Exam_2026/backend-project/routes/transactions.js +174 -0
  2384. package/template/sms/Davina_Student_National_Practical_Exam_2026/backend-project/routes/warehouses.js +35 -0
  2385. package/template/sms/Davina_Student_National_Practical_Exam_2026/backend-project/server.js +45 -0
  2386. package/template/sms/Davina_Student_National_Practical_Exam_2026/database/ERD_NOTES.md +55 -0
  2387. package/template/sms/Davina_Student_National_Practical_Exam_2026/database/schema.sql +37 -0
  2388. package/template/sms/Davina_Student_National_Practical_Exam_2026/frontend-project/index.html +12 -0
  2389. package/template/sms/Davina_Student_National_Practical_Exam_2026/frontend-project/package-lock.json +3020 -0
  2390. package/template/sms/Davina_Student_National_Practical_Exam_2026/frontend-project/package.json +26 -0
  2391. package/template/sms/Davina_Student_National_Practical_Exam_2026/frontend-project/postcss.config.js +6 -0
  2392. package/template/sms/Davina_Student_National_Practical_Exam_2026/frontend-project/src/App.jsx +33 -0
  2393. package/template/sms/Davina_Student_National_Practical_Exam_2026/frontend-project/src/api/axios.js +30 -0
  2394. package/template/sms/Davina_Student_National_Practical_Exam_2026/frontend-project/src/components/Alert.jsx +17 -0
  2395. package/template/sms/Davina_Student_National_Practical_Exam_2026/frontend-project/src/components/Layout.jsx +108 -0
  2396. package/template/sms/Davina_Student_National_Practical_Exam_2026/frontend-project/src/components/ProtectedRoute.jsx +9 -0
  2397. package/template/sms/Davina_Student_National_Practical_Exam_2026/frontend-project/src/index.css +29 -0
  2398. package/template/sms/Davina_Student_National_Practical_Exam_2026/frontend-project/src/main.jsx +13 -0
  2399. package/template/sms/Davina_Student_National_Practical_Exam_2026/frontend-project/src/pages/Login.jsx +104 -0
  2400. package/template/sms/Davina_Student_National_Practical_Exam_2026/frontend-project/src/pages/Products.jsx +148 -0
  2401. package/template/sms/Davina_Student_National_Practical_Exam_2026/frontend-project/src/pages/Reports.jsx +194 -0
  2402. package/template/sms/Davina_Student_National_Practical_Exam_2026/frontend-project/src/pages/Transactions.jsx +276 -0
  2403. package/template/sms/Davina_Student_National_Practical_Exam_2026/frontend-project/src/pages/Warehouses.jsx +133 -0
  2404. package/template/sms/Davina_Student_National_Practical_Exam_2026/frontend-project/tailwind.config.js +20 -0
  2405. package/template/sms/Davina_Student_National_Practical_Exam_2026/frontend-project/vite.config.js +15 -0
  2406. package/template/sms/Davina_Student_National_Practical_Exam_2026/package.json +12 -0
  2407. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/ERD.md +98 -0
  2408. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/README.md +146 -0
  2409. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/.env +6 -0
  2410. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/.env.example +6 -0
  2411. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/config/db.js +14 -0
  2412. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/middleware/auth.js +21 -0
  2413. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/.bin/mime +16 -0
  2414. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/.bin/mime.cmd +17 -0
  2415. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/.bin/mime.ps1 +28 -0
  2416. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/.bin/semver +16 -0
  2417. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/.bin/semver.cmd +17 -0
  2418. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/.bin/semver.ps1 +28 -0
  2419. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/.package-lock.json +1118 -0
  2420. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/@types/node/LICENSE +21 -0
  2421. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/@types/node/README.md +15 -0
  2422. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/@types/node/assert/strict.d.ts +59 -0
  2423. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/@types/node/assert.d.ts +950 -0
  2424. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/@types/node/async_hooks.d.ts +711 -0
  2425. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/@types/node/buffer.buffer.d.ts +466 -0
  2426. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/@types/node/buffer.d.ts +1765 -0
  2427. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/@types/node/child_process.d.ts +1366 -0
  2428. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/@types/node/cluster.d.ts +432 -0
  2429. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/@types/node/compatibility/iterators.d.ts +21 -0
  2430. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/@types/node/console.d.ts +93 -0
  2431. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/@types/node/constants.d.ts +14 -0
  2432. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/@types/node/crypto.d.ts +4058 -0
  2433. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/@types/node/dgram.d.ts +537 -0
  2434. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/@types/node/diagnostics_channel.d.ts +552 -0
  2435. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/@types/node/dns/promises.d.ts +497 -0
  2436. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/@types/node/dns.d.ts +876 -0
  2437. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/@types/node/domain.d.ts +150 -0
  2438. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/@types/node/events.d.ts +1008 -0
  2439. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/@types/node/fs/promises.d.ts +1468 -0
  2440. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/@types/node/fs.d.ts +4780 -0
  2441. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/@types/node/globals.d.ts +150 -0
  2442. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/@types/node/globals.typedarray.d.ts +101 -0
  2443. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/@types/node/http.d.ts +2147 -0
  2444. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/@types/node/http2.d.ts +2485 -0
  2445. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/@types/node/https.d.ts +400 -0
  2446. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/@types/node/index.d.ts +117 -0
  2447. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/@types/node/inspector/promises.d.ts +35 -0
  2448. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/@types/node/inspector.d.ts +264 -0
  2449. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/@types/node/inspector.generated.d.ts +4406 -0
  2450. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/@types/node/module.d.ts +755 -0
  2451. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/@types/node/net.d.ts +970 -0
  2452. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/@types/node/os.d.ts +498 -0
  2453. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/@types/node/package.json +155 -0
  2454. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/@types/node/path/posix.d.ts +8 -0
  2455. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/@types/node/path/win32.d.ts +8 -0
  2456. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/@types/node/path.d.ts +178 -0
  2457. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/@types/node/perf_hooks.d.ts +612 -0
  2458. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/@types/node/process.d.ts +2204 -0
  2459. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/@types/node/punycode.d.ts +89 -0
  2460. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/@types/node/querystring.d.ts +139 -0
  2461. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/@types/node/quic.d.ts +897 -0
  2462. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/@types/node/readline/promises.d.ts +158 -0
  2463. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/@types/node/readline.d.ts +507 -0
  2464. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/@types/node/repl.d.ts +420 -0
  2465. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/@types/node/sea.d.ts +47 -0
  2466. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/@types/node/sqlite.d.ts +1068 -0
  2467. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/@types/node/stream/consumers.d.ts +114 -0
  2468. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/@types/node/stream/iter.d.ts +301 -0
  2469. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/@types/node/stream/promises.d.ts +211 -0
  2470. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/@types/node/stream/web.d.ts +300 -0
  2471. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/@types/node/stream.d.ts +1774 -0
  2472. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/@types/node/string_decoder.d.ts +27 -0
  2473. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/@types/node/test/reporters.d.ts +59 -0
  2474. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/@types/node/test.d.ts +2279 -0
  2475. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/@types/node/timers/promises.d.ts +93 -0
  2476. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/@types/node/timers.d.ts +149 -0
  2477. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/@types/node/tls.d.ts +1193 -0
  2478. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/@types/node/trace_events.d.ts +103 -0
  2479. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/@types/node/ts5.6/buffer.buffer.d.ts +462 -0
  2480. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/@types/node/ts5.6/compatibility/float16array.d.ts +71 -0
  2481. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/@types/node/ts5.6/globals.typedarray.d.ts +36 -0
  2482. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/@types/node/ts5.6/index.d.ts +119 -0
  2483. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/@types/node/ts5.7/compatibility/float16array.d.ts +72 -0
  2484. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/@types/node/ts5.7/index.d.ts +119 -0
  2485. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/@types/node/tty.d.ts +225 -0
  2486. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/@types/node/url.d.ts +556 -0
  2487. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/@types/node/util/types.d.ts +558 -0
  2488. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/@types/node/util.d.ts +1677 -0
  2489. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/@types/node/v8.d.ts +980 -0
  2490. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/@types/node/vm.d.ts +1136 -0
  2491. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/@types/node/wasi.d.ts +131 -0
  2492. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/@types/node/web-globals/abortcontroller.d.ts +59 -0
  2493. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/@types/node/web-globals/blob.d.ts +23 -0
  2494. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/@types/node/web-globals/console.d.ts +9 -0
  2495. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/@types/node/web-globals/crypto.d.ts +39 -0
  2496. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/@types/node/web-globals/domexception.d.ts +68 -0
  2497. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/@types/node/web-globals/encoding.d.ts +11 -0
  2498. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/@types/node/web-globals/events.d.ts +106 -0
  2499. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/@types/node/web-globals/fetch.d.ts +69 -0
  2500. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/@types/node/web-globals/importmeta.d.ts +13 -0
  2501. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/@types/node/web-globals/messaging.d.ts +23 -0
  2502. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/@types/node/web-globals/navigator.d.ts +25 -0
  2503. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/@types/node/web-globals/performance.d.ts +45 -0
  2504. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/@types/node/web-globals/storage.d.ts +24 -0
  2505. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/@types/node/web-globals/streams.d.ts +115 -0
  2506. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/@types/node/web-globals/timers.d.ts +44 -0
  2507. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/@types/node/web-globals/url.d.ts +24 -0
  2508. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/@types/node/worker_threads.d.ts +671 -0
  2509. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/@types/node/zlib/iter.d.ts +131 -0
  2510. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/@types/node/zlib.d.ts +589 -0
  2511. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/accepts/HISTORY.md +243 -0
  2512. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/accepts/LICENSE +23 -0
  2513. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/accepts/README.md +140 -0
  2514. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/accepts/index.js +238 -0
  2515. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/accepts/package.json +47 -0
  2516. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/array-flatten/LICENSE +21 -0
  2517. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/array-flatten/README.md +43 -0
  2518. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/array-flatten/array-flatten.js +64 -0
  2519. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/array-flatten/package.json +39 -0
  2520. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/aws-ssl-profiles/LICENSE +19 -0
  2521. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/aws-ssl-profiles/README.md +146 -0
  2522. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/aws-ssl-profiles/lib/@types/profiles.d.ts +4 -0
  2523. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/aws-ssl-profiles/lib/@types/profiles.js +2 -0
  2524. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/aws-ssl-profiles/lib/index.d.ts +8 -0
  2525. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/aws-ssl-profiles/lib/index.js +13 -0
  2526. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/aws-ssl-profiles/lib/profiles/ca/defaults.d.ts +9 -0
  2527. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/aws-ssl-profiles/lib/profiles/ca/defaults.js +2888 -0
  2528. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/aws-ssl-profiles/lib/profiles/ca/proxies.d.ts +8 -0
  2529. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/aws-ssl-profiles/lib/profiles/ca/proxies.js +111 -0
  2530. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/aws-ssl-profiles/package.json +52 -0
  2531. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/bcryptjs/.travis.yml +18 -0
  2532. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/bcryptjs/.vscode/settings.json +3 -0
  2533. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/bcryptjs/LICENSE +50 -0
  2534. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/bcryptjs/README.md +251 -0
  2535. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/bcryptjs/bin/bcrypt +25 -0
  2536. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/bcryptjs/bower.json +22 -0
  2537. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/bcryptjs/dist/README.md +15 -0
  2538. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/bcryptjs/dist/bcrypt.js +1379 -0
  2539. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/bcryptjs/dist/bcrypt.min.js +48 -0
  2540. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/bcryptjs/dist/bcrypt.min.js.gz +0 -0
  2541. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/bcryptjs/dist/bcrypt.min.map +8 -0
  2542. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/bcryptjs/externs/bcrypt.js +91 -0
  2543. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/bcryptjs/externs/minimal-env.js +98 -0
  2544. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/bcryptjs/index.js +29 -0
  2545. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/bcryptjs/package.json +47 -0
  2546. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/bcryptjs/scripts/build.js +37 -0
  2547. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/bcryptjs/src/bcrypt/impl.js +669 -0
  2548. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/bcryptjs/src/bcrypt/prng/README.md +5 -0
  2549. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/bcryptjs/src/bcrypt/prng/accum.js +133 -0
  2550. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/bcryptjs/src/bcrypt/prng/isaac.js +140 -0
  2551. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/bcryptjs/src/bcrypt/util/base64.js +115 -0
  2552. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/bcryptjs/src/bcrypt/util.js +33 -0
  2553. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/bcryptjs/src/bcrypt.js +327 -0
  2554. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/bcryptjs/src/bower.json +22 -0
  2555. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/bcryptjs/src/wrap.js +50 -0
  2556. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/bcryptjs/tests/quickbrown.txt +150 -0
  2557. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/bcryptjs/tests/suite.js +197 -0
  2558. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/body-parser/HISTORY.md +686 -0
  2559. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/body-parser/LICENSE +23 -0
  2560. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/body-parser/README.md +476 -0
  2561. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/body-parser/index.js +156 -0
  2562. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/body-parser/lib/read.js +205 -0
  2563. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/body-parser/lib/types/json.js +243 -0
  2564. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/body-parser/lib/types/raw.js +101 -0
  2565. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/body-parser/lib/types/text.js +121 -0
  2566. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/body-parser/lib/types/urlencoded.js +299 -0
  2567. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/body-parser/package.json +55 -0
  2568. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/buffer-equal-constant-time/.travis.yml +4 -0
  2569. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/buffer-equal-constant-time/LICENSE.txt +12 -0
  2570. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/buffer-equal-constant-time/README.md +50 -0
  2571. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/buffer-equal-constant-time/index.js +41 -0
  2572. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/buffer-equal-constant-time/package.json +21 -0
  2573. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/buffer-equal-constant-time/test.js +42 -0
  2574. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/bytes/History.md +97 -0
  2575. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/bytes/LICENSE +23 -0
  2576. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/bytes/Readme.md +152 -0
  2577. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/bytes/index.js +170 -0
  2578. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/bytes/package.json +42 -0
  2579. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/call-bind-apply-helpers/.eslintrc +17 -0
  2580. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/call-bind-apply-helpers/.github/FUNDING.yml +12 -0
  2581. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/call-bind-apply-helpers/.nycrc +9 -0
  2582. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/call-bind-apply-helpers/CHANGELOG.md +30 -0
  2583. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/call-bind-apply-helpers/LICENSE +21 -0
  2584. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/call-bind-apply-helpers/README.md +62 -0
  2585. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/call-bind-apply-helpers/actualApply.d.ts +1 -0
  2586. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/call-bind-apply-helpers/actualApply.js +10 -0
  2587. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/call-bind-apply-helpers/applyBind.d.ts +19 -0
  2588. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/call-bind-apply-helpers/applyBind.js +10 -0
  2589. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/call-bind-apply-helpers/functionApply.d.ts +1 -0
  2590. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/call-bind-apply-helpers/functionApply.js +4 -0
  2591. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/call-bind-apply-helpers/functionCall.d.ts +1 -0
  2592. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/call-bind-apply-helpers/functionCall.js +4 -0
  2593. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/call-bind-apply-helpers/index.d.ts +64 -0
  2594. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/call-bind-apply-helpers/index.js +15 -0
  2595. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/call-bind-apply-helpers/package.json +85 -0
  2596. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/call-bind-apply-helpers/reflectApply.d.ts +3 -0
  2597. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/call-bind-apply-helpers/reflectApply.js +4 -0
  2598. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/call-bind-apply-helpers/test/index.js +63 -0
  2599. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/call-bind-apply-helpers/tsconfig.json +9 -0
  2600. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/call-bound/.eslintrc +13 -0
  2601. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/call-bound/.github/FUNDING.yml +12 -0
  2602. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/call-bound/.nycrc +9 -0
  2603. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/call-bound/CHANGELOG.md +42 -0
  2604. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/call-bound/LICENSE +21 -0
  2605. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/call-bound/README.md +53 -0
  2606. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/call-bound/index.d.ts +94 -0
  2607. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/call-bound/index.js +19 -0
  2608. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/call-bound/package.json +99 -0
  2609. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/call-bound/test/index.js +61 -0
  2610. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/call-bound/tsconfig.json +10 -0
  2611. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/content-disposition/HISTORY.md +60 -0
  2612. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/content-disposition/LICENSE +22 -0
  2613. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/content-disposition/README.md +142 -0
  2614. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/content-disposition/index.js +458 -0
  2615. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/content-disposition/package.json +44 -0
  2616. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/content-type/HISTORY.md +29 -0
  2617. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/content-type/LICENSE +22 -0
  2618. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/content-type/README.md +94 -0
  2619. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/content-type/index.js +225 -0
  2620. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/content-type/package.json +42 -0
  2621. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/cookie/LICENSE +24 -0
  2622. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/cookie/README.md +317 -0
  2623. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/cookie/SECURITY.md +25 -0
  2624. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/cookie/index.js +335 -0
  2625. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/cookie/package.json +44 -0
  2626. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/cookie-signature/History.md +42 -0
  2627. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/cookie-signature/Readme.md +42 -0
  2628. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/cookie-signature/index.js +51 -0
  2629. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/cookie-signature/package.json +18 -0
  2630. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/cors/LICENSE +22 -0
  2631. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/cors/README.md +277 -0
  2632. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/cors/lib/index.js +238 -0
  2633. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/cors/package.json +42 -0
  2634. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/debug/.coveralls.yml +1 -0
  2635. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/debug/.eslintrc +11 -0
  2636. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/debug/.travis.yml +14 -0
  2637. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/debug/CHANGELOG.md +362 -0
  2638. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/debug/LICENSE +19 -0
  2639. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/debug/Makefile +50 -0
  2640. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/debug/README.md +312 -0
  2641. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/debug/component.json +19 -0
  2642. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/debug/karma.conf.js +70 -0
  2643. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/debug/node.js +1 -0
  2644. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/debug/package.json +49 -0
  2645. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/debug/src/browser.js +185 -0
  2646. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/debug/src/debug.js +202 -0
  2647. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/debug/src/index.js +10 -0
  2648. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/debug/src/inspector-log.js +15 -0
  2649. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/debug/src/node.js +248 -0
  2650. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/denque/CHANGELOG.md +29 -0
  2651. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/denque/LICENSE +201 -0
  2652. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/denque/README.md +77 -0
  2653. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/denque/index.d.ts +47 -0
  2654. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/denque/index.js +481 -0
  2655. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/denque/package.json +58 -0
  2656. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/depd/History.md +103 -0
  2657. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/depd/LICENSE +22 -0
  2658. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/depd/Readme.md +280 -0
  2659. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/depd/index.js +538 -0
  2660. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/depd/lib/browser/index.js +77 -0
  2661. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/depd/package.json +45 -0
  2662. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/destroy/LICENSE +23 -0
  2663. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/destroy/README.md +63 -0
  2664. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/destroy/index.js +209 -0
  2665. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/destroy/package.json +48 -0
  2666. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/dotenv/CHANGELOG.md +520 -0
  2667. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/dotenv/LICENSE +23 -0
  2668. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/dotenv/README-es.md +411 -0
  2669. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/dotenv/README.md +645 -0
  2670. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/dotenv/SECURITY.md +1 -0
  2671. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/dotenv/config.d.ts +1 -0
  2672. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/dotenv/config.js +9 -0
  2673. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/dotenv/lib/cli-options.js +17 -0
  2674. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/dotenv/lib/env-options.js +28 -0
  2675. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/dotenv/lib/main.d.ts +162 -0
  2676. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/dotenv/lib/main.js +386 -0
  2677. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/dotenv/package.json +62 -0
  2678. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/dunder-proto/.eslintrc +5 -0
  2679. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/dunder-proto/.github/FUNDING.yml +12 -0
  2680. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/dunder-proto/.nycrc +13 -0
  2681. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/dunder-proto/CHANGELOG.md +24 -0
  2682. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/dunder-proto/LICENSE +21 -0
  2683. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/dunder-proto/README.md +54 -0
  2684. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/dunder-proto/get.d.ts +5 -0
  2685. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/dunder-proto/get.js +30 -0
  2686. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/dunder-proto/package.json +76 -0
  2687. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/dunder-proto/set.d.ts +5 -0
  2688. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/dunder-proto/set.js +35 -0
  2689. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/dunder-proto/test/get.js +34 -0
  2690. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/dunder-proto/test/index.js +4 -0
  2691. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/dunder-proto/test/set.js +50 -0
  2692. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/dunder-proto/tsconfig.json +9 -0
  2693. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/ecdsa-sig-formatter/CODEOWNERS +1 -0
  2694. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/ecdsa-sig-formatter/LICENSE +201 -0
  2695. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/ecdsa-sig-formatter/README.md +65 -0
  2696. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/ecdsa-sig-formatter/package.json +46 -0
  2697. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/ecdsa-sig-formatter/src/ecdsa-sig-formatter.d.ts +17 -0
  2698. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/ecdsa-sig-formatter/src/ecdsa-sig-formatter.js +187 -0
  2699. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/ecdsa-sig-formatter/src/param-bytes-for-alg.js +23 -0
  2700. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/ee-first/LICENSE +22 -0
  2701. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/ee-first/README.md +80 -0
  2702. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/ee-first/index.js +95 -0
  2703. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/ee-first/package.json +29 -0
  2704. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/encodeurl/LICENSE +22 -0
  2705. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/encodeurl/README.md +109 -0
  2706. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/encodeurl/index.js +60 -0
  2707. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/encodeurl/package.json +40 -0
  2708. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/es-define-property/.eslintrc +13 -0
  2709. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/es-define-property/.github/FUNDING.yml +12 -0
  2710. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/es-define-property/.nycrc +9 -0
  2711. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/es-define-property/CHANGELOG.md +29 -0
  2712. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/es-define-property/LICENSE +21 -0
  2713. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/es-define-property/README.md +49 -0
  2714. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/es-define-property/index.d.ts +3 -0
  2715. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/es-define-property/index.js +14 -0
  2716. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/es-define-property/package.json +81 -0
  2717. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/es-define-property/test/index.js +56 -0
  2718. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/es-define-property/tsconfig.json +10 -0
  2719. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/es-errors/.eslintrc +5 -0
  2720. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/es-errors/.github/FUNDING.yml +12 -0
  2721. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/es-errors/CHANGELOG.md +40 -0
  2722. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/es-errors/LICENSE +21 -0
  2723. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/es-errors/README.md +55 -0
  2724. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/es-errors/eval.d.ts +3 -0
  2725. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/es-errors/eval.js +4 -0
  2726. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/es-errors/index.d.ts +3 -0
  2727. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/es-errors/index.js +4 -0
  2728. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/es-errors/package.json +80 -0
  2729. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/es-errors/range.d.ts +3 -0
  2730. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/es-errors/range.js +4 -0
  2731. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/es-errors/ref.d.ts +3 -0
  2732. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/es-errors/ref.js +4 -0
  2733. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/es-errors/syntax.d.ts +3 -0
  2734. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/es-errors/syntax.js +4 -0
  2735. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/es-errors/test/index.js +19 -0
  2736. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/es-errors/tsconfig.json +49 -0
  2737. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/es-errors/type.d.ts +3 -0
  2738. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/es-errors/type.js +4 -0
  2739. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/es-errors/uri.d.ts +3 -0
  2740. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/es-errors/uri.js +4 -0
  2741. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/es-object-atoms/.eslintrc +16 -0
  2742. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/es-object-atoms/.github/FUNDING.yml +12 -0
  2743. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/es-object-atoms/CHANGELOG.md +44 -0
  2744. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/es-object-atoms/LICENSE +21 -0
  2745. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/es-object-atoms/README.md +63 -0
  2746. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/es-object-atoms/RequireObjectCoercible.d.ts +3 -0
  2747. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/es-object-atoms/RequireObjectCoercible.js +11 -0
  2748. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/es-object-atoms/ToObject.d.ts +7 -0
  2749. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/es-object-atoms/ToObject.js +10 -0
  2750. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/es-object-atoms/index.d.ts +3 -0
  2751. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/es-object-atoms/index.js +4 -0
  2752. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/es-object-atoms/isObject.d.ts +3 -0
  2753. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/es-object-atoms/isObject.js +6 -0
  2754. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/es-object-atoms/package.json +79 -0
  2755. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/es-object-atoms/test/index.js +38 -0
  2756. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/es-object-atoms/tsconfig.json +7 -0
  2757. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/escape-html/LICENSE +24 -0
  2758. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/escape-html/Readme.md +43 -0
  2759. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/escape-html/index.js +78 -0
  2760. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/escape-html/package.json +24 -0
  2761. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/etag/HISTORY.md +83 -0
  2762. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/etag/LICENSE +22 -0
  2763. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/etag/README.md +159 -0
  2764. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/etag/index.js +131 -0
  2765. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/etag/package.json +47 -0
  2766. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/express/History.md +3676 -0
  2767. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/express/LICENSE +24 -0
  2768. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/express/Readme.md +260 -0
  2769. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/express/index.js +11 -0
  2770. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/express/lib/application.js +661 -0
  2771. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/express/lib/express.js +116 -0
  2772. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/express/lib/middleware/init.js +43 -0
  2773. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/express/lib/middleware/query.js +47 -0
  2774. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/express/lib/request.js +525 -0
  2775. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/express/lib/response.js +1179 -0
  2776. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/express/lib/router/index.js +673 -0
  2777. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/express/lib/router/layer.js +181 -0
  2778. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/express/lib/router/route.js +230 -0
  2779. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/express/lib/utils.js +304 -0
  2780. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/express/lib/view.js +182 -0
  2781. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/express/package.json +102 -0
  2782. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/finalhandler/HISTORY.md +216 -0
  2783. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/finalhandler/LICENSE +22 -0
  2784. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/finalhandler/README.md +147 -0
  2785. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/finalhandler/SECURITY.md +25 -0
  2786. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/finalhandler/index.js +341 -0
  2787. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/finalhandler/package.json +47 -0
  2788. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/forwarded/HISTORY.md +21 -0
  2789. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/forwarded/LICENSE +22 -0
  2790. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/forwarded/README.md +57 -0
  2791. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/forwarded/index.js +90 -0
  2792. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/forwarded/package.json +45 -0
  2793. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/fresh/HISTORY.md +70 -0
  2794. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/fresh/LICENSE +23 -0
  2795. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/fresh/README.md +119 -0
  2796. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/fresh/index.js +137 -0
  2797. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/fresh/package.json +46 -0
  2798. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/function-bind/.eslintrc +21 -0
  2799. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/function-bind/.github/FUNDING.yml +12 -0
  2800. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/function-bind/.github/SECURITY.md +3 -0
  2801. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/function-bind/.nycrc +13 -0
  2802. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/function-bind/CHANGELOG.md +136 -0
  2803. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/function-bind/LICENSE +20 -0
  2804. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/function-bind/README.md +46 -0
  2805. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/function-bind/implementation.js +84 -0
  2806. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/function-bind/index.js +5 -0
  2807. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/function-bind/package.json +87 -0
  2808. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/function-bind/test/.eslintrc +9 -0
  2809. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/function-bind/test/index.js +252 -0
  2810. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/generate-function/.travis.yml +3 -0
  2811. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/generate-function/LICENSE +21 -0
  2812. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/generate-function/README.md +89 -0
  2813. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/generate-function/example.js +27 -0
  2814. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/generate-function/index.js +181 -0
  2815. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/generate-function/package.json +32 -0
  2816. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/generate-function/test.js +49 -0
  2817. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/get-intrinsic/.eslintrc +42 -0
  2818. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/get-intrinsic/.github/FUNDING.yml +12 -0
  2819. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/get-intrinsic/.nycrc +9 -0
  2820. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/get-intrinsic/CHANGELOG.md +186 -0
  2821. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/get-intrinsic/LICENSE +21 -0
  2822. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/get-intrinsic/README.md +71 -0
  2823. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/get-intrinsic/index.js +378 -0
  2824. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/get-intrinsic/package.json +97 -0
  2825. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/get-intrinsic/test/GetIntrinsic.js +274 -0
  2826. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/get-proto/.eslintrc +10 -0
  2827. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/get-proto/.github/FUNDING.yml +12 -0
  2828. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/get-proto/.nycrc +9 -0
  2829. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/get-proto/CHANGELOG.md +21 -0
  2830. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/get-proto/LICENSE +21 -0
  2831. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/get-proto/Object.getPrototypeOf.d.ts +5 -0
  2832. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/get-proto/Object.getPrototypeOf.js +6 -0
  2833. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/get-proto/README.md +50 -0
  2834. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/get-proto/Reflect.getPrototypeOf.d.ts +3 -0
  2835. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/get-proto/Reflect.getPrototypeOf.js +4 -0
  2836. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/get-proto/index.d.ts +5 -0
  2837. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/get-proto/index.js +27 -0
  2838. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/get-proto/package.json +81 -0
  2839. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/get-proto/test/index.js +68 -0
  2840. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/get-proto/tsconfig.json +9 -0
  2841. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/gopd/.eslintrc +16 -0
  2842. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/gopd/.github/FUNDING.yml +12 -0
  2843. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/gopd/CHANGELOG.md +45 -0
  2844. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/gopd/LICENSE +21 -0
  2845. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/gopd/README.md +40 -0
  2846. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/gopd/gOPD.d.ts +1 -0
  2847. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/gopd/gOPD.js +4 -0
  2848. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/gopd/index.d.ts +5 -0
  2849. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/gopd/index.js +15 -0
  2850. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/gopd/package.json +77 -0
  2851. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/gopd/test/index.js +36 -0
  2852. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/gopd/tsconfig.json +9 -0
  2853. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/has-symbols/.eslintrc +11 -0
  2854. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/has-symbols/.github/FUNDING.yml +12 -0
  2855. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/has-symbols/.nycrc +9 -0
  2856. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/has-symbols/CHANGELOG.md +91 -0
  2857. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/has-symbols/LICENSE +21 -0
  2858. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/has-symbols/README.md +46 -0
  2859. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/has-symbols/index.d.ts +3 -0
  2860. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/has-symbols/index.js +14 -0
  2861. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/has-symbols/package.json +111 -0
  2862. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/has-symbols/shams.d.ts +3 -0
  2863. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/has-symbols/shams.js +45 -0
  2864. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/has-symbols/test/index.js +22 -0
  2865. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/has-symbols/test/shams/core-js.js +29 -0
  2866. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/has-symbols/test/shams/get-own-property-symbols.js +29 -0
  2867. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/has-symbols/test/tests.js +58 -0
  2868. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/has-symbols/tsconfig.json +10 -0
  2869. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/hasown/.github/FUNDING.yml +12 -0
  2870. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/hasown/.nycrc +13 -0
  2871. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/hasown/CHANGELOG.md +58 -0
  2872. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/hasown/LICENSE +21 -0
  2873. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/hasown/README.md +40 -0
  2874. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/hasown/eslint.config.mjs +6 -0
  2875. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/hasown/index.d.ts +3 -0
  2876. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/hasown/index.js +8 -0
  2877. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/hasown/package.json +91 -0
  2878. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/hasown/tsconfig.json +6 -0
  2879. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/http-errors/HISTORY.md +186 -0
  2880. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/http-errors/LICENSE +23 -0
  2881. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/http-errors/README.md +169 -0
  2882. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/http-errors/index.js +290 -0
  2883. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/http-errors/package.json +54 -0
  2884. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/iconv-lite/Changelog.md +162 -0
  2885. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/iconv-lite/LICENSE +21 -0
  2886. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/iconv-lite/README.md +156 -0
  2887. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/iconv-lite/encodings/dbcs-codec.js +555 -0
  2888. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/iconv-lite/encodings/dbcs-data.js +176 -0
  2889. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/iconv-lite/encodings/index.js +22 -0
  2890. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/iconv-lite/encodings/internal.js +188 -0
  2891. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/iconv-lite/encodings/sbcs-codec.js +72 -0
  2892. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/iconv-lite/encodings/sbcs-data-generated.js +451 -0
  2893. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/iconv-lite/encodings/sbcs-data.js +174 -0
  2894. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/iconv-lite/encodings/tables/big5-added.json +122 -0
  2895. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/iconv-lite/encodings/tables/cp936.json +264 -0
  2896. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/iconv-lite/encodings/tables/cp949.json +273 -0
  2897. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/iconv-lite/encodings/tables/cp950.json +177 -0
  2898. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/iconv-lite/encodings/tables/eucjp.json +182 -0
  2899. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/iconv-lite/encodings/tables/gb18030-ranges.json +1 -0
  2900. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/iconv-lite/encodings/tables/gbk-added.json +55 -0
  2901. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/iconv-lite/encodings/tables/shiftjis.json +125 -0
  2902. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/iconv-lite/encodings/utf16.js +177 -0
  2903. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/iconv-lite/encodings/utf7.js +290 -0
  2904. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/iconv-lite/lib/bom-handling.js +52 -0
  2905. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/iconv-lite/lib/extend-node.js +217 -0
  2906. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/iconv-lite/lib/index.d.ts +24 -0
  2907. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/iconv-lite/lib/index.js +153 -0
  2908. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/iconv-lite/lib/streams.js +121 -0
  2909. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/iconv-lite/package.json +46 -0
  2910. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/inherits/LICENSE +16 -0
  2911. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/inherits/README.md +42 -0
  2912. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/inherits/inherits.js +9 -0
  2913. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/inherits/inherits_browser.js +27 -0
  2914. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/inherits/package.json +29 -0
  2915. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/ipaddr.js/LICENSE +19 -0
  2916. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/ipaddr.js/README.md +233 -0
  2917. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/ipaddr.js/ipaddr.min.js +1 -0
  2918. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/ipaddr.js/lib/ipaddr.js +673 -0
  2919. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/ipaddr.js/lib/ipaddr.js.d.ts +68 -0
  2920. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/ipaddr.js/package.json +35 -0
  2921. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/is-property/LICENSE +22 -0
  2922. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/is-property/README.md +28 -0
  2923. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/is-property/is-property.js +5 -0
  2924. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/is-property/package.json +36 -0
  2925. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/jsonwebtoken/LICENSE +21 -0
  2926. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/jsonwebtoken/README.md +396 -0
  2927. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/jsonwebtoken/decode.js +30 -0
  2928. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/jsonwebtoken/index.js +8 -0
  2929. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/jsonwebtoken/lib/JsonWebTokenError.js +14 -0
  2930. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/jsonwebtoken/lib/NotBeforeError.js +13 -0
  2931. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/jsonwebtoken/lib/TokenExpiredError.js +13 -0
  2932. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/jsonwebtoken/lib/asymmetricKeyDetailsSupported.js +3 -0
  2933. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/jsonwebtoken/lib/psSupported.js +3 -0
  2934. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/jsonwebtoken/lib/rsaPssKeyDetailsSupported.js +3 -0
  2935. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/jsonwebtoken/lib/timespan.js +18 -0
  2936. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/jsonwebtoken/lib/validateAsymmetricKey.js +66 -0
  2937. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/jsonwebtoken/node_modules/ms/index.js +162 -0
  2938. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/jsonwebtoken/node_modules/ms/license.md +21 -0
  2939. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/jsonwebtoken/node_modules/ms/package.json +38 -0
  2940. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/jsonwebtoken/node_modules/ms/readme.md +59 -0
  2941. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/jsonwebtoken/package.json +70 -0
  2942. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/jsonwebtoken/sign.js +253 -0
  2943. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/jsonwebtoken/verify.js +263 -0
  2944. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/jwa/LICENSE +17 -0
  2945. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/jwa/README.md +150 -0
  2946. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/jwa/index.js +266 -0
  2947. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/jwa/opslevel.yml +6 -0
  2948. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/jwa/package.json +37 -0
  2949. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/jws/CHANGELOG.md +56 -0
  2950. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/jws/LICENSE +17 -0
  2951. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/jws/index.js +22 -0
  2952. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/jws/lib/data-stream.js +55 -0
  2953. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/jws/lib/sign-stream.js +83 -0
  2954. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/jws/lib/tostring.js +10 -0
  2955. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/jws/lib/verify-stream.js +125 -0
  2956. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/jws/opslevel.yml +6 -0
  2957. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/jws/package.json +34 -0
  2958. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/jws/readme.md +255 -0
  2959. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/lodash.includes/LICENSE +47 -0
  2960. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/lodash.includes/README.md +18 -0
  2961. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/lodash.includes/index.js +745 -0
  2962. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/lodash.includes/package.json +17 -0
  2963. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/lodash.isboolean/LICENSE +22 -0
  2964. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/lodash.isboolean/README.md +18 -0
  2965. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/lodash.isboolean/index.js +70 -0
  2966. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/lodash.isboolean/package.json +17 -0
  2967. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/lodash.isinteger/LICENSE +47 -0
  2968. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/lodash.isinteger/README.md +18 -0
  2969. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/lodash.isinteger/index.js +265 -0
  2970. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/lodash.isinteger/package.json +17 -0
  2971. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/lodash.isnumber/LICENSE +22 -0
  2972. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/lodash.isnumber/README.md +18 -0
  2973. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/lodash.isnumber/index.js +79 -0
  2974. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/lodash.isnumber/package.json +17 -0
  2975. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/lodash.isplainobject/LICENSE +47 -0
  2976. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/lodash.isplainobject/README.md +18 -0
  2977. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/lodash.isplainobject/index.js +139 -0
  2978. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/lodash.isplainobject/package.json +17 -0
  2979. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/lodash.isstring/LICENSE +22 -0
  2980. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/lodash.isstring/README.md +18 -0
  2981. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/lodash.isstring/index.js +95 -0
  2982. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/lodash.isstring/package.json +17 -0
  2983. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/lodash.once/LICENSE +47 -0
  2984. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/lodash.once/README.md +18 -0
  2985. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/lodash.once/index.js +294 -0
  2986. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/lodash.once/package.json +17 -0
  2987. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/long/LICENSE +202 -0
  2988. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/long/README.md +286 -0
  2989. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/long/index.d.ts +2 -0
  2990. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/long/index.js +1581 -0
  2991. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/long/package.json +58 -0
  2992. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/long/types.d.ts +474 -0
  2993. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/long/umd/index.d.ts +3 -0
  2994. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/long/umd/index.js +1622 -0
  2995. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/long/umd/package.json +3 -0
  2996. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/long/umd/types.d.ts +474 -0
  2997. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/lru.min/LICENSE +21 -0
  2998. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/lru.min/README.md +392 -0
  2999. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/lru.min/browser/lru.min.js +1 -0
  3000. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/lru.min/lib/index.d.ts +38 -0
  3001. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/lru.min/lib/index.js +248 -0
  3002. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/lru.min/lib/index.mjs +227 -0
  3003. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/lru.min/package.json +87 -0
  3004. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/math-intrinsics/.eslintrc +16 -0
  3005. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/math-intrinsics/.github/FUNDING.yml +12 -0
  3006. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/math-intrinsics/CHANGELOG.md +24 -0
  3007. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/math-intrinsics/LICENSE +21 -0
  3008. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/math-intrinsics/README.md +50 -0
  3009. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/math-intrinsics/abs.d.ts +1 -0
  3010. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/math-intrinsics/abs.js +4 -0
  3011. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/math-intrinsics/constants/maxArrayLength.d.ts +3 -0
  3012. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/math-intrinsics/constants/maxArrayLength.js +4 -0
  3013. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/math-intrinsics/constants/maxSafeInteger.d.ts +3 -0
  3014. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/math-intrinsics/constants/maxSafeInteger.js +5 -0
  3015. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/math-intrinsics/constants/maxValue.d.ts +3 -0
  3016. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/math-intrinsics/constants/maxValue.js +5 -0
  3017. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/math-intrinsics/floor.d.ts +1 -0
  3018. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/math-intrinsics/floor.js +4 -0
  3019. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/math-intrinsics/isFinite.d.ts +3 -0
  3020. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/math-intrinsics/isFinite.js +12 -0
  3021. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/math-intrinsics/isInteger.d.ts +3 -0
  3022. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/math-intrinsics/isInteger.js +16 -0
  3023. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/math-intrinsics/isNaN.d.ts +1 -0
  3024. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/math-intrinsics/isNaN.js +6 -0
  3025. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/math-intrinsics/isNegativeZero.d.ts +3 -0
  3026. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/math-intrinsics/isNegativeZero.js +6 -0
  3027. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/math-intrinsics/max.d.ts +1 -0
  3028. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/math-intrinsics/max.js +4 -0
  3029. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/math-intrinsics/min.d.ts +1 -0
  3030. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/math-intrinsics/min.js +4 -0
  3031. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/math-intrinsics/mod.d.ts +3 -0
  3032. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/math-intrinsics/mod.js +9 -0
  3033. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/math-intrinsics/package.json +86 -0
  3034. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/math-intrinsics/pow.d.ts +1 -0
  3035. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/math-intrinsics/pow.js +4 -0
  3036. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/math-intrinsics/round.d.ts +1 -0
  3037. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/math-intrinsics/round.js +4 -0
  3038. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/math-intrinsics/sign.d.ts +3 -0
  3039. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/math-intrinsics/sign.js +11 -0
  3040. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/math-intrinsics/test/index.js +192 -0
  3041. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/math-intrinsics/tsconfig.json +3 -0
  3042. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/media-typer/HISTORY.md +22 -0
  3043. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/media-typer/LICENSE +22 -0
  3044. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/media-typer/README.md +81 -0
  3045. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/media-typer/index.js +270 -0
  3046. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/media-typer/package.json +26 -0
  3047. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/merge-descriptors/HISTORY.md +21 -0
  3048. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/merge-descriptors/LICENSE +23 -0
  3049. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/merge-descriptors/README.md +49 -0
  3050. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/merge-descriptors/index.js +60 -0
  3051. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/merge-descriptors/package.json +39 -0
  3052. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/methods/HISTORY.md +29 -0
  3053. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/methods/LICENSE +24 -0
  3054. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/methods/README.md +51 -0
  3055. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/methods/index.js +69 -0
  3056. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/methods/package.json +36 -0
  3057. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mime/CHANGELOG.md +164 -0
  3058. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mime/LICENSE +21 -0
  3059. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mime/README.md +90 -0
  3060. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mime/cli.js +8 -0
  3061. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mime/mime.js +108 -0
  3062. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mime/package.json +44 -0
  3063. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mime/src/build.js +53 -0
  3064. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mime/src/test.js +60 -0
  3065. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mime/types.json +1 -0
  3066. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mime-db/HISTORY.md +507 -0
  3067. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mime-db/LICENSE +23 -0
  3068. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mime-db/README.md +100 -0
  3069. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mime-db/db.json +8519 -0
  3070. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mime-db/index.js +12 -0
  3071. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mime-db/package.json +60 -0
  3072. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mime-types/HISTORY.md +397 -0
  3073. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mime-types/LICENSE +23 -0
  3074. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mime-types/README.md +113 -0
  3075. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mime-types/index.js +188 -0
  3076. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mime-types/package.json +44 -0
  3077. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/ms/index.js +152 -0
  3078. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/ms/license.md +21 -0
  3079. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/ms/package.json +37 -0
  3080. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/ms/readme.md +51 -0
  3081. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/License +19 -0
  3082. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/README.md +114 -0
  3083. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/index.d.ts +1 -0
  3084. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/index.js +77 -0
  3085. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/auth_41.js +95 -0
  3086. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/auth_plugins/caching_sha2_password.js +115 -0
  3087. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/auth_plugins/caching_sha2_password.md +18 -0
  3088. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/auth_plugins/index.js +8 -0
  3089. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/auth_plugins/mysql_clear_password.js +17 -0
  3090. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/auth_plugins/mysql_native_password.js +34 -0
  3091. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/auth_plugins/sha256_password.js +74 -0
  3092. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/base/connection.js +1139 -0
  3093. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/base/pool.js +347 -0
  3094. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/commands/auth_switch.js +151 -0
  3095. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/commands/binlog_dump.js +109 -0
  3096. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/commands/change_user.js +68 -0
  3097. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/commands/client_handshake.js +386 -0
  3098. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/commands/close_statement.js +18 -0
  3099. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/commands/command.js +54 -0
  3100. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/commands/execute.js +116 -0
  3101. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/commands/index.js +29 -0
  3102. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/commands/ping.js +36 -0
  3103. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/commands/prepare.js +143 -0
  3104. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/commands/query.js +365 -0
  3105. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/commands/quit.js +29 -0
  3106. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/commands/register_slave.js +27 -0
  3107. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/commands/reset_connection.js +29 -0
  3108. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/commands/server_handshake.js +205 -0
  3109. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/compressed_protocol.js +153 -0
  3110. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/connection.js +12 -0
  3111. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/connection_config.js +300 -0
  3112. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/constants/charset_encodings.js +317 -0
  3113. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/constants/charsets.js +317 -0
  3114. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/constants/client.js +39 -0
  3115. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/constants/commands.js +37 -0
  3116. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/constants/cursor.js +9 -0
  3117. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/constants/encoding_charset.js +50 -0
  3118. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/constants/errors.js +3973 -0
  3119. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/constants/field_flags.js +20 -0
  3120. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/constants/server_status.js +44 -0
  3121. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/constants/session_track.js +11 -0
  3122. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/constants/ssl_profiles.js +11 -0
  3123. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/constants/types.js +64 -0
  3124. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/create_connection.js +10 -0
  3125. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/create_pool.js +10 -0
  3126. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/create_pool_cluster.js +9 -0
  3127. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/helpers.js +83 -0
  3128. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/packet_parser.js +195 -0
  3129. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/packets/auth_next_factor.js +35 -0
  3130. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/packets/auth_switch_request.js +38 -0
  3131. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/packets/auth_switch_request_more_data.js +33 -0
  3132. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/packets/auth_switch_response.js +30 -0
  3133. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/packets/binary_row.js +95 -0
  3134. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/packets/binlog_dump.js +33 -0
  3135. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/packets/binlog_query_statusvars.js +115 -0
  3136. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/packets/change_user.js +97 -0
  3137. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/packets/close_statement.js +21 -0
  3138. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/packets/column_definition.js +291 -0
  3139. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/packets/encode_parameter.js +69 -0
  3140. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/packets/execute.js +177 -0
  3141. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/packets/handshake.js +112 -0
  3142. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/packets/handshake_response.js +173 -0
  3143. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/packets/index.js +154 -0
  3144. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/packets/packet.js +978 -0
  3145. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/packets/prepare_statement.js +27 -0
  3146. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/packets/prepared_statement_header.js +16 -0
  3147. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/packets/query.js +102 -0
  3148. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/packets/register_slave.js +46 -0
  3149. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/packets/reset_connection.js +17 -0
  3150. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/packets/resultset_header.js +124 -0
  3151. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/packets/ssl_request.js +25 -0
  3152. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/packets/text_row.js +47 -0
  3153. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/parsers/binary_parser.js +235 -0
  3154. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/parsers/parser_cache.js +68 -0
  3155. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/parsers/static_binary_parser.js +213 -0
  3156. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/parsers/static_text_parser.js +152 -0
  3157. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/parsers/string.js +50 -0
  3158. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/parsers/text_parser.js +214 -0
  3159. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/pool.js +12 -0
  3160. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/pool_cluster.js +375 -0
  3161. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/pool_config.js +34 -0
  3162. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/pool_connection.js +81 -0
  3163. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/promise/capture_local_err.js +25 -0
  3164. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/promise/connection.js +237 -0
  3165. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/promise/inherit_events.js +27 -0
  3166. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/promise/make_done_cb.js +16 -0
  3167. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/promise/pool.js +118 -0
  3168. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/promise/pool_cluster.js +59 -0
  3169. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/promise/pool_connection.js +19 -0
  3170. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/promise/prepared_statement_info.js +35 -0
  3171. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/results_stream.js +38 -0
  3172. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/server.js +37 -0
  3173. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/lib/tracing.js +81 -0
  3174. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/node_modules/iconv-lite/LICENSE +21 -0
  3175. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/node_modules/iconv-lite/README.md +138 -0
  3176. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/node_modules/iconv-lite/encodings/dbcs-codec.js +532 -0
  3177. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/node_modules/iconv-lite/encodings/dbcs-data.js +185 -0
  3178. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/node_modules/iconv-lite/encodings/index.js +23 -0
  3179. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/node_modules/iconv-lite/encodings/internal.js +218 -0
  3180. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/node_modules/iconv-lite/encodings/sbcs-codec.js +75 -0
  3181. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/node_modules/iconv-lite/encodings/sbcs-data-generated.js +451 -0
  3182. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/node_modules/iconv-lite/encodings/sbcs-data.js +178 -0
  3183. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/node_modules/iconv-lite/encodings/tables/big5-added.json +122 -0
  3184. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/node_modules/iconv-lite/encodings/tables/cp936.json +264 -0
  3185. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/node_modules/iconv-lite/encodings/tables/cp949.json +273 -0
  3186. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/node_modules/iconv-lite/encodings/tables/cp950.json +177 -0
  3187. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/node_modules/iconv-lite/encodings/tables/eucjp.json +182 -0
  3188. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/node_modules/iconv-lite/encodings/tables/gb18030-ranges.json +1 -0
  3189. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/node_modules/iconv-lite/encodings/tables/gbk-added.json +56 -0
  3190. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/node_modules/iconv-lite/encodings/tables/shiftjis.json +125 -0
  3191. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/node_modules/iconv-lite/encodings/utf16.js +187 -0
  3192. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/node_modules/iconv-lite/encodings/utf32.js +307 -0
  3193. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/node_modules/iconv-lite/encodings/utf7.js +283 -0
  3194. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/node_modules/iconv-lite/lib/bom-handling.js +48 -0
  3195. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/node_modules/iconv-lite/lib/helpers/merge-exports.js +13 -0
  3196. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/node_modules/iconv-lite/lib/index.d.ts +129 -0
  3197. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/node_modules/iconv-lite/lib/index.js +182 -0
  3198. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/node_modules/iconv-lite/lib/streams.js +105 -0
  3199. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/node_modules/iconv-lite/package.json +70 -0
  3200. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/node_modules/iconv-lite/types/encodings.d.ts +423 -0
  3201. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/package.json +95 -0
  3202. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/promise.d.ts +141 -0
  3203. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/promise.js +209 -0
  3204. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/typings/mysql/LICENSE.txt +15 -0
  3205. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/typings/mysql/index.d.ts +93 -0
  3206. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/typings/mysql/info.txt +1 -0
  3207. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/typings/mysql/lib/Auth.d.ts +30 -0
  3208. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/typings/mysql/lib/Connection.d.ts +456 -0
  3209. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/typings/mysql/lib/Pool.d.ts +78 -0
  3210. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/typings/mysql/lib/PoolCluster.d.ts +92 -0
  3211. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/typings/mysql/lib/PoolConnection.d.ts +11 -0
  3212. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/typings/mysql/lib/Server.d.ts +11 -0
  3213. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/typings/mysql/lib/Tracing.d.ts +71 -0
  3214. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/typings/mysql/lib/constants/CharsetToEncoding.d.ts +8 -0
  3215. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/typings/mysql/lib/constants/Charsets.d.ts +326 -0
  3216. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/typings/mysql/lib/constants/Types.d.ts +70 -0
  3217. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/typings/mysql/lib/constants/index.d.ts +5 -0
  3218. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/typings/mysql/lib/parsers/ParserCache.d.ts +4 -0
  3219. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/typings/mysql/lib/parsers/index.d.ts +18 -0
  3220. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/typings/mysql/lib/parsers/typeCast.d.ts +54 -0
  3221. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/typings/mysql/lib/protocol/packets/Field.d.ts +10 -0
  3222. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/typings/mysql/lib/protocol/packets/FieldPacket.d.ts +27 -0
  3223. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/typings/mysql/lib/protocol/packets/OkPacket.d.ts +23 -0
  3224. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/typings/mysql/lib/protocol/packets/ProcedurePacket.d.ts +13 -0
  3225. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/typings/mysql/lib/protocol/packets/ResultSetHeader.d.ts +18 -0
  3226. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/typings/mysql/lib/protocol/packets/RowDataPacket.d.ts +9 -0
  3227. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/typings/mysql/lib/protocol/packets/index.d.ts +28 -0
  3228. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/typings/mysql/lib/protocol/packets/params/ErrorPacketParams.d.ts +6 -0
  3229. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/typings/mysql/lib/protocol/packets/params/OkPacketParams.d.ts +9 -0
  3230. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/typings/mysql/lib/protocol/sequences/ExecutableBase.d.ts +41 -0
  3231. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/typings/mysql/lib/protocol/sequences/Prepare.d.ts +65 -0
  3232. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/typings/mysql/lib/protocol/sequences/Query.d.ts +235 -0
  3233. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/typings/mysql/lib/protocol/sequences/QueryableBase.d.ts +41 -0
  3234. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/typings/mysql/lib/protocol/sequences/Sequence.d.ts +5 -0
  3235. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/typings/mysql/lib/protocol/sequences/promise/ExecutableBase.d.ts +17 -0
  3236. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/mysql2/typings/mysql/lib/protocol/sequences/promise/QueryableBase.d.ts +18 -0
  3237. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/named-placeholders/LICENSE +21 -0
  3238. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/named-placeholders/README.md +27 -0
  3239. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/named-placeholders/index.js +179 -0
  3240. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/named-placeholders/package.json +36 -0
  3241. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/negotiator/HISTORY.md +108 -0
  3242. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/negotiator/LICENSE +24 -0
  3243. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/negotiator/README.md +203 -0
  3244. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/negotiator/index.js +82 -0
  3245. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/negotiator/lib/charset.js +169 -0
  3246. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/negotiator/lib/encoding.js +184 -0
  3247. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/negotiator/lib/language.js +179 -0
  3248. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/negotiator/lib/mediaType.js +294 -0
  3249. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/negotiator/package.json +42 -0
  3250. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/object-assign/index.js +90 -0
  3251. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/object-assign/license +21 -0
  3252. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/object-assign/package.json +42 -0
  3253. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/object-assign/readme.md +61 -0
  3254. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/object-inspect/.eslintrc +53 -0
  3255. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/object-inspect/.github/FUNDING.yml +12 -0
  3256. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/object-inspect/.nycrc +13 -0
  3257. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/object-inspect/CHANGELOG.md +424 -0
  3258. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/object-inspect/LICENSE +21 -0
  3259. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/object-inspect/example/all.js +23 -0
  3260. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/object-inspect/example/circular.js +6 -0
  3261. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/object-inspect/example/fn.js +5 -0
  3262. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/object-inspect/example/inspect.js +10 -0
  3263. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/object-inspect/index.js +544 -0
  3264. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/object-inspect/package-support.json +20 -0
  3265. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/object-inspect/package.json +105 -0
  3266. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/object-inspect/readme.markdown +84 -0
  3267. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/object-inspect/test/bigint.js +58 -0
  3268. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/object-inspect/test/browser/dom.js +15 -0
  3269. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/object-inspect/test/circular.js +16 -0
  3270. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/object-inspect/test/deep.js +12 -0
  3271. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/object-inspect/test/element.js +53 -0
  3272. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/object-inspect/test/err.js +48 -0
  3273. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/object-inspect/test/fakes.js +29 -0
  3274. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/object-inspect/test/fn.js +76 -0
  3275. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/object-inspect/test/global.js +17 -0
  3276. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/object-inspect/test/has.js +15 -0
  3277. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/object-inspect/test/holes.js +15 -0
  3278. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/object-inspect/test/indent-option.js +271 -0
  3279. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/object-inspect/test/inspect.js +139 -0
  3280. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/object-inspect/test/lowbyte.js +12 -0
  3281. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/object-inspect/test/number.js +58 -0
  3282. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/object-inspect/test/quoteStyle.js +26 -0
  3283. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/object-inspect/test/toStringTag.js +40 -0
  3284. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/object-inspect/test/undef.js +12 -0
  3285. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/object-inspect/test/values.js +261 -0
  3286. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/object-inspect/test-core-js.js +26 -0
  3287. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/object-inspect/util.inspect.js +1 -0
  3288. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/on-finished/HISTORY.md +98 -0
  3289. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/on-finished/LICENSE +23 -0
  3290. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/on-finished/README.md +162 -0
  3291. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/on-finished/index.js +234 -0
  3292. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/on-finished/package.json +39 -0
  3293. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/parseurl/HISTORY.md +58 -0
  3294. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/parseurl/LICENSE +24 -0
  3295. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/parseurl/README.md +133 -0
  3296. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/parseurl/index.js +158 -0
  3297. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/parseurl/package.json +40 -0
  3298. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/path-to-regexp/LICENSE +21 -0
  3299. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/path-to-regexp/Readme.md +35 -0
  3300. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/path-to-regexp/index.js +158 -0
  3301. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/path-to-regexp/package.json +30 -0
  3302. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/proxy-addr/HISTORY.md +161 -0
  3303. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/proxy-addr/LICENSE +22 -0
  3304. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/proxy-addr/README.md +139 -0
  3305. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/proxy-addr/index.js +327 -0
  3306. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/proxy-addr/package.json +47 -0
  3307. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/qs/.editorconfig +46 -0
  3308. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/qs/.github/FUNDING.yml +12 -0
  3309. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/qs/.github/SECURITY.md +11 -0
  3310. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/qs/.github/THREAT_MODEL.md +78 -0
  3311. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/qs/.nycrc +13 -0
  3312. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/qs/CHANGELOG.md +822 -0
  3313. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/qs/LICENSE.md +29 -0
  3314. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/qs/README.md +758 -0
  3315. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/qs/dist/qs.js +141 -0
  3316. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/qs/eslint.config.mjs +57 -0
  3317. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/qs/lib/formats.js +23 -0
  3318. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/qs/lib/index.js +11 -0
  3319. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/qs/lib/parse.js +403 -0
  3320. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/qs/lib/stringify.js +363 -0
  3321. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/qs/lib/utils.js +342 -0
  3322. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/qs/package.json +94 -0
  3323. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/qs/test/empty-keys-cases.js +267 -0
  3324. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/qs/test/parse.js +1703 -0
  3325. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/qs/test/stringify.js +1448 -0
  3326. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/qs/test/utils.js +432 -0
  3327. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/range-parser/HISTORY.md +56 -0
  3328. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/range-parser/LICENSE +23 -0
  3329. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/range-parser/README.md +84 -0
  3330. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/range-parser/index.js +162 -0
  3331. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/range-parser/package.json +44 -0
  3332. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/raw-body/LICENSE +22 -0
  3333. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/raw-body/README.md +223 -0
  3334. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/raw-body/index.d.ts +87 -0
  3335. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/raw-body/index.js +336 -0
  3336. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/raw-body/package.json +47 -0
  3337. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/safe-buffer/LICENSE +21 -0
  3338. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/safe-buffer/README.md +584 -0
  3339. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/safe-buffer/index.d.ts +187 -0
  3340. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/safe-buffer/index.js +65 -0
  3341. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/safe-buffer/package.json +51 -0
  3342. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/safer-buffer/LICENSE +21 -0
  3343. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/safer-buffer/Porting-Buffer.md +268 -0
  3344. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/safer-buffer/Readme.md +156 -0
  3345. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/safer-buffer/dangerous.js +58 -0
  3346. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/safer-buffer/package.json +34 -0
  3347. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/safer-buffer/safer.js +77 -0
  3348. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/safer-buffer/tests.js +406 -0
  3349. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/semver/LICENSE +15 -0
  3350. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/semver/README.md +680 -0
  3351. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/semver/bin/semver.js +195 -0
  3352. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/semver/classes/comparator.js +143 -0
  3353. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/semver/classes/index.js +7 -0
  3354. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/semver/classes/range.js +564 -0
  3355. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/semver/classes/semver.js +333 -0
  3356. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/semver/functions/clean.js +8 -0
  3357. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/semver/functions/cmp.js +54 -0
  3358. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/semver/functions/coerce.js +62 -0
  3359. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/semver/functions/compare-build.js +9 -0
  3360. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/semver/functions/compare-loose.js +5 -0
  3361. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/semver/functions/compare.js +7 -0
  3362. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/semver/functions/diff.js +60 -0
  3363. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/semver/functions/eq.js +5 -0
  3364. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/semver/functions/gt.js +5 -0
  3365. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/semver/functions/gte.js +5 -0
  3366. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/semver/functions/inc.js +21 -0
  3367. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/semver/functions/lt.js +5 -0
  3368. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/semver/functions/lte.js +5 -0
  3369. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/semver/functions/major.js +5 -0
  3370. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/semver/functions/minor.js +5 -0
  3371. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/semver/functions/neq.js +5 -0
  3372. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/semver/functions/parse.js +18 -0
  3373. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/semver/functions/patch.js +5 -0
  3374. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/semver/functions/prerelease.js +8 -0
  3375. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/semver/functions/rcompare.js +5 -0
  3376. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/semver/functions/rsort.js +5 -0
  3377. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/semver/functions/satisfies.js +12 -0
  3378. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/semver/functions/sort.js +5 -0
  3379. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/semver/functions/truncate.js +48 -0
  3380. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/semver/functions/valid.js +8 -0
  3381. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/semver/index.js +93 -0
  3382. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/semver/internal/constants.js +37 -0
  3383. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/semver/internal/debug.js +11 -0
  3384. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/semver/internal/identifiers.js +29 -0
  3385. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/semver/internal/lrucache.js +42 -0
  3386. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/semver/internal/parse-options.js +17 -0
  3387. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/semver/internal/re.js +223 -0
  3388. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/semver/package.json +78 -0
  3389. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/semver/preload.js +4 -0
  3390. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/semver/range.bnf +17 -0
  3391. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/semver/ranges/gtr.js +6 -0
  3392. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/semver/ranges/intersects.js +9 -0
  3393. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/semver/ranges/ltr.js +6 -0
  3394. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/semver/ranges/max-satisfying.js +27 -0
  3395. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/semver/ranges/min-satisfying.js +26 -0
  3396. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/semver/ranges/min-version.js +63 -0
  3397. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/semver/ranges/outside.js +82 -0
  3398. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/semver/ranges/simplify.js +49 -0
  3399. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/semver/ranges/subset.js +249 -0
  3400. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/semver/ranges/to-comparators.js +10 -0
  3401. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/semver/ranges/valid.js +13 -0
  3402. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/send/HISTORY.md +538 -0
  3403. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/send/LICENSE +23 -0
  3404. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/send/README.md +327 -0
  3405. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/send/SECURITY.md +24 -0
  3406. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/send/index.js +1142 -0
  3407. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/send/node_modules/ms/index.js +162 -0
  3408. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/send/node_modules/ms/license.md +21 -0
  3409. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/send/node_modules/ms/package.json +38 -0
  3410. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/send/node_modules/ms/readme.md +59 -0
  3411. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/send/package.json +62 -0
  3412. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/serve-static/HISTORY.md +493 -0
  3413. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/serve-static/LICENSE +25 -0
  3414. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/serve-static/README.md +257 -0
  3415. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/serve-static/index.js +209 -0
  3416. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/serve-static/package.json +42 -0
  3417. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/setprototypeof/LICENSE +13 -0
  3418. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/setprototypeof/README.md +31 -0
  3419. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/setprototypeof/index.d.ts +2 -0
  3420. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/setprototypeof/index.js +17 -0
  3421. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/setprototypeof/package.json +38 -0
  3422. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/setprototypeof/test/index.js +24 -0
  3423. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/side-channel/.editorconfig +9 -0
  3424. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/side-channel/.eslintrc +12 -0
  3425. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/side-channel/.github/FUNDING.yml +12 -0
  3426. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/side-channel/.nycrc +13 -0
  3427. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/side-channel/CHANGELOG.md +110 -0
  3428. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/side-channel/LICENSE +21 -0
  3429. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/side-channel/README.md +61 -0
  3430. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/side-channel/index.d.ts +14 -0
  3431. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/side-channel/index.js +43 -0
  3432. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/side-channel/package.json +85 -0
  3433. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/side-channel/test/index.js +104 -0
  3434. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/side-channel/tsconfig.json +9 -0
  3435. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/side-channel-list/.editorconfig +9 -0
  3436. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/side-channel-list/.eslintrc +11 -0
  3437. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/side-channel-list/.github/FUNDING.yml +12 -0
  3438. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/side-channel-list/.nycrc +13 -0
  3439. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/side-channel-list/CHANGELOG.md +36 -0
  3440. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/side-channel-list/LICENSE +21 -0
  3441. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/side-channel-list/README.md +62 -0
  3442. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/side-channel-list/index.d.ts +13 -0
  3443. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/side-channel-list/index.js +111 -0
  3444. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/side-channel-list/list.d.ts +14 -0
  3445. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/side-channel-list/package.json +77 -0
  3446. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/side-channel-list/test/index.js +154 -0
  3447. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/side-channel-list/tsconfig.json +9 -0
  3448. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/side-channel-map/.editorconfig +9 -0
  3449. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/side-channel-map/.eslintrc +11 -0
  3450. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/side-channel-map/.github/FUNDING.yml +12 -0
  3451. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/side-channel-map/.nycrc +13 -0
  3452. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/side-channel-map/CHANGELOG.md +22 -0
  3453. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/side-channel-map/LICENSE +21 -0
  3454. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/side-channel-map/README.md +62 -0
  3455. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/side-channel-map/index.d.ts +15 -0
  3456. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/side-channel-map/index.js +68 -0
  3457. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/side-channel-map/package.json +80 -0
  3458. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/side-channel-map/test/index.js +114 -0
  3459. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/side-channel-map/tsconfig.json +9 -0
  3460. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/side-channel-weakmap/.editorconfig +9 -0
  3461. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/side-channel-weakmap/.eslintrc +12 -0
  3462. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/side-channel-weakmap/.github/FUNDING.yml +12 -0
  3463. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/side-channel-weakmap/.nycrc +13 -0
  3464. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/side-channel-weakmap/CHANGELOG.md +28 -0
  3465. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/side-channel-weakmap/LICENSE +21 -0
  3466. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/side-channel-weakmap/README.md +62 -0
  3467. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/side-channel-weakmap/index.d.ts +15 -0
  3468. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/side-channel-weakmap/index.js +84 -0
  3469. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/side-channel-weakmap/package.json +87 -0
  3470. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/side-channel-weakmap/test/index.js +114 -0
  3471. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/side-channel-weakmap/tsconfig.json +9 -0
  3472. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/sql-escaper/LICENSE +21 -0
  3473. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/sql-escaper/README.md +424 -0
  3474. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/sql-escaper/lib/index.d.ts +15 -0
  3475. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/sql-escaper/lib/index.js +398 -0
  3476. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/sql-escaper/lib/index.mjs +305 -0
  3477. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/sql-escaper/lib/types.d.ts +5 -0
  3478. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/sql-escaper/lib/types.js +2 -0
  3479. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/sql-escaper/package.json +81 -0
  3480. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/statuses/HISTORY.md +87 -0
  3481. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/statuses/LICENSE +23 -0
  3482. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/statuses/README.md +139 -0
  3483. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/statuses/codes.json +65 -0
  3484. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/statuses/index.js +146 -0
  3485. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/statuses/package.json +49 -0
  3486. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/toidentifier/HISTORY.md +9 -0
  3487. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/toidentifier/LICENSE +21 -0
  3488. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/toidentifier/README.md +61 -0
  3489. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/toidentifier/index.js +32 -0
  3490. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/toidentifier/package.json +38 -0
  3491. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/type-is/HISTORY.md +259 -0
  3492. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/type-is/LICENSE +23 -0
  3493. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/type-is/README.md +170 -0
  3494. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/type-is/index.js +266 -0
  3495. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/type-is/package.json +45 -0
  3496. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/undici-types/LICENSE +21 -0
  3497. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/undici-types/README.md +6 -0
  3498. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/undici-types/agent.d.ts +32 -0
  3499. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/undici-types/api.d.ts +43 -0
  3500. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/undici-types/balanced-pool.d.ts +30 -0
  3501. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/undici-types/cache-interceptor.d.ts +179 -0
  3502. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/undici-types/cache.d.ts +36 -0
  3503. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/undici-types/client-stats.d.ts +15 -0
  3504. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/undici-types/client.d.ts +123 -0
  3505. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/undici-types/connector.d.ts +36 -0
  3506. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/undici-types/content-type.d.ts +21 -0
  3507. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/undici-types/cookies.d.ts +30 -0
  3508. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/undici-types/diagnostics-channel.d.ts +74 -0
  3509. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/undici-types/dispatcher.d.ts +279 -0
  3510. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/undici-types/env-http-proxy-agent.d.ts +22 -0
  3511. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/undici-types/errors.d.ts +177 -0
  3512. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/undici-types/eventsource.d.ts +66 -0
  3513. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/undici-types/fetch.d.ts +211 -0
  3514. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/undici-types/formdata.d.ts +108 -0
  3515. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/undici-types/global-dispatcher.d.ts +9 -0
  3516. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/undici-types/global-origin.d.ts +7 -0
  3517. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/undici-types/h2c-client.d.ts +73 -0
  3518. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/undici-types/handlers.d.ts +15 -0
  3519. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/undici-types/header.d.ts +160 -0
  3520. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/undici-types/index.d.ts +91 -0
  3521. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/undici-types/interceptors.d.ts +80 -0
  3522. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/undici-types/mock-agent.d.ts +68 -0
  3523. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/undici-types/mock-call-history.d.ts +111 -0
  3524. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/undici-types/mock-client.d.ts +27 -0
  3525. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/undici-types/mock-errors.d.ts +12 -0
  3526. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/undici-types/mock-interceptor.d.ts +94 -0
  3527. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/undici-types/mock-pool.d.ts +27 -0
  3528. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/undici-types/package.json +55 -0
  3529. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/undici-types/patch.d.ts +29 -0
  3530. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/undici-types/pool-stats.d.ts +19 -0
  3531. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/undici-types/pool.d.ts +41 -0
  3532. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/undici-types/proxy-agent.d.ts +29 -0
  3533. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/undici-types/readable.d.ts +68 -0
  3534. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/undici-types/retry-agent.d.ts +8 -0
  3535. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/undici-types/retry-handler.d.ts +125 -0
  3536. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/undici-types/round-robin-pool.d.ts +41 -0
  3537. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/undici-types/snapshot-agent.d.ts +109 -0
  3538. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/undici-types/socks5-proxy-agent.d.ts +25 -0
  3539. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/undici-types/util.d.ts +18 -0
  3540. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/undici-types/utility.d.ts +7 -0
  3541. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/undici-types/webidl.d.ts +347 -0
  3542. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/undici-types/websocket.d.ts +188 -0
  3543. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/unpipe/HISTORY.md +4 -0
  3544. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/unpipe/LICENSE +22 -0
  3545. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/unpipe/README.md +43 -0
  3546. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/unpipe/index.js +69 -0
  3547. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/unpipe/package.json +27 -0
  3548. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/utils-merge/LICENSE +20 -0
  3549. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/utils-merge/README.md +34 -0
  3550. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/utils-merge/index.js +23 -0
  3551. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/utils-merge/package.json +40 -0
  3552. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/vary/HISTORY.md +39 -0
  3553. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/vary/LICENSE +22 -0
  3554. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/vary/README.md +101 -0
  3555. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/vary/index.js +149 -0
  3556. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/node_modules/vary/package.json +43 -0
  3557. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/package-lock.json +1131 -0
  3558. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/package.json +22 -0
  3559. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/routes/auth.js +69 -0
  3560. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/routes/customers.js +38 -0
  3561. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/routes/products.js +38 -0
  3562. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/routes/reports.js +96 -0
  3563. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/routes/sales.js +190 -0
  3564. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/scripts/seedUser.js +27 -0
  3565. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/backend-project/server.js +38 -0
  3566. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/database/schema.sql +46 -0
  3567. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/frontend-project/README.md +16 -0
  3568. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/frontend-project/eslint.config.js +21 -0
  3569. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/frontend-project/index.html +13 -0
  3570. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/frontend-project/package-lock.json +3167 -0
  3571. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/frontend-project/package.json +31 -0
  3572. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/frontend-project/public/favicon.svg +1 -0
  3573. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/frontend-project/public/icons.svg +24 -0
  3574. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/frontend-project/src/App.css +184 -0
  3575. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/frontend-project/src/App.jsx +40 -0
  3576. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/frontend-project/src/api/axios.js +15 -0
  3577. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/frontend-project/src/assets/hero.png +0 -0
  3578. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/frontend-project/src/assets/react.svg +1 -0
  3579. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/frontend-project/src/assets/vite.svg +1 -0
  3580. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/frontend-project/src/components/Layout.jsx +67 -0
  3581. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/frontend-project/src/components/ProtectedRoute.jsx +20 -0
  3582. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/frontend-project/src/context/AuthContext.jsx +47 -0
  3583. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/frontend-project/src/index.css +7 -0
  3584. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/frontend-project/src/main.jsx +10 -0
  3585. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/frontend-project/src/pages/Customer.jsx +159 -0
  3586. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/frontend-project/src/pages/Login.jsx +94 -0
  3587. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/frontend-project/src/pages/Product.jsx +152 -0
  3588. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/frontend-project/src/pages/Reports.jsx +177 -0
  3589. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/frontend-project/src/pages/Sales.jsx +362 -0
  3590. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/frontend-project/src/pages/SignUp.jsx +125 -0
  3591. package/template/srms/Sangano_Ineza_Davina_National_Practical_Exam_2026/frontend-project/vite.config.js +7 -0
@@ -0,0 +1,2485 @@
1
+ declare module "node:http2" {
2
+ import { NonSharedBuffer } from "node:buffer";
3
+ import { InternalEventEmitter } from "node:events";
4
+ import * as fs from "node:fs";
5
+ import * as net from "node:net";
6
+ import * as stream from "node:stream";
7
+ import * as tls from "node:tls";
8
+ import * as url from "node:url";
9
+ import {
10
+ IncomingHttpHeaders as Http1IncomingHttpHeaders,
11
+ IncomingMessage,
12
+ OutgoingHttpHeaders,
13
+ ServerResponse,
14
+ } from "node:http";
15
+ interface IncomingHttpStatusHeader {
16
+ ":status"?: number | undefined;
17
+ }
18
+ interface IncomingHttpHeaders extends Http1IncomingHttpHeaders {
19
+ ":path"?: string | undefined;
20
+ ":method"?: string | undefined;
21
+ ":authority"?: string | undefined;
22
+ ":scheme"?: string | undefined;
23
+ }
24
+ // Http2Stream
25
+ interface StreamState {
26
+ localWindowSize?: number | undefined;
27
+ state?: number | undefined;
28
+ localClose?: number | undefined;
29
+ remoteClose?: number | undefined;
30
+ /** @deprecated */
31
+ sumDependencyWeight?: number | undefined;
32
+ /** @deprecated */
33
+ weight?: number | undefined;
34
+ }
35
+ interface ServerStreamResponseOptions {
36
+ endStream?: boolean | undefined;
37
+ waitForTrailers?: boolean | undefined;
38
+ }
39
+ interface StatOptions {
40
+ offset: number;
41
+ length: number;
42
+ }
43
+ interface ServerStreamFileResponseOptions {
44
+ statCheck?:
45
+ | ((stats: fs.Stats, headers: OutgoingHttpHeaders, statOptions: StatOptions) => void)
46
+ | undefined;
47
+ waitForTrailers?: boolean | undefined;
48
+ offset?: number | undefined;
49
+ length?: number | undefined;
50
+ }
51
+ interface ServerStreamFileResponseOptionsWithError extends ServerStreamFileResponseOptions {
52
+ onError?: ((err: NodeJS.ErrnoException) => void) | undefined;
53
+ }
54
+ interface Http2StreamEventMap extends stream.DuplexEventMap {
55
+ "aborted": [];
56
+ "data": [chunk: string | NonSharedBuffer];
57
+ "frameError": [type: number, code: number, id: number];
58
+ "ready": [];
59
+ "streamClosed": [code: number];
60
+ "timeout": [];
61
+ "trailers": [trailers: IncomingHttpHeaders, flags: number];
62
+ "wantTrailers": [];
63
+ }
64
+ interface Http2Stream extends stream.Duplex {
65
+ /**
66
+ * Set to `true` if the `Http2Stream` instance was aborted abnormally. When set,
67
+ * the `'aborted'` event will have been emitted.
68
+ * @since v8.4.0
69
+ */
70
+ readonly aborted: boolean;
71
+ /**
72
+ * This property shows the number of characters currently buffered to be written.
73
+ * See `net.Socket.bufferSize` for details.
74
+ * @since v11.2.0, v10.16.0
75
+ */
76
+ readonly bufferSize: number;
77
+ /**
78
+ * Set to `true` if the `Http2Stream` instance has been closed.
79
+ * @since v9.4.0
80
+ */
81
+ readonly closed: boolean;
82
+ /**
83
+ * Set to `true` if the `Http2Stream` instance has been destroyed and is no longer
84
+ * usable.
85
+ * @since v8.4.0
86
+ */
87
+ readonly destroyed: boolean;
88
+ /**
89
+ * Set to `true` if the `END_STREAM` flag was set in the request or response
90
+ * HEADERS frame received, indicating that no additional data should be received
91
+ * and the readable side of the `Http2Stream` will be closed.
92
+ * @since v10.11.0
93
+ */
94
+ readonly endAfterHeaders: boolean;
95
+ /**
96
+ * The numeric stream identifier of this `Http2Stream` instance. Set to `undefined` if the stream identifier has not yet been assigned.
97
+ * @since v8.4.0
98
+ */
99
+ readonly id?: number | undefined;
100
+ /**
101
+ * Set to `true` if the `Http2Stream` instance has not yet been assigned a
102
+ * numeric stream identifier.
103
+ * @since v9.4.0
104
+ */
105
+ readonly pending: boolean;
106
+ /**
107
+ * Set to the `RST_STREAM` `error code` reported when the `Http2Stream` is
108
+ * destroyed after either receiving an `RST_STREAM` frame from the connected peer,
109
+ * calling `http2stream.close()`, or `http2stream.destroy()`. Will be `undefined` if the `Http2Stream` has not been closed.
110
+ * @since v8.4.0
111
+ */
112
+ readonly rstCode: number;
113
+ /**
114
+ * An object containing the outbound headers sent for this `Http2Stream`.
115
+ * @since v9.5.0
116
+ */
117
+ readonly sentHeaders: OutgoingHttpHeaders;
118
+ /**
119
+ * An array of objects containing the outbound informational (additional) headers
120
+ * sent for this `Http2Stream`.
121
+ * @since v9.5.0
122
+ */
123
+ readonly sentInfoHeaders?: OutgoingHttpHeaders[] | undefined;
124
+ /**
125
+ * An object containing the outbound trailers sent for this `HttpStream`.
126
+ * @since v9.5.0
127
+ */
128
+ readonly sentTrailers?: OutgoingHttpHeaders | undefined;
129
+ /**
130
+ * A reference to the `Http2Session` instance that owns this `Http2Stream`. The
131
+ * value will be `undefined` after the `Http2Stream` instance is destroyed.
132
+ * @since v8.4.0
133
+ */
134
+ readonly session: Http2Session | undefined;
135
+ /**
136
+ * Provides miscellaneous information about the current state of the `Http2Stream`.
137
+ *
138
+ * A current state of this `Http2Stream`.
139
+ * @since v8.4.0
140
+ */
141
+ readonly state: StreamState;
142
+ /**
143
+ * Closes the `Http2Stream` instance by sending an `RST_STREAM` frame to the
144
+ * connected HTTP/2 peer.
145
+ * @since v8.4.0
146
+ * @param [code=http2.constants.NGHTTP2_NO_ERROR] Unsigned 32-bit integer identifying the error code.
147
+ * @param callback An optional function registered to listen for the `'close'` event.
148
+ */
149
+ close(code?: number, callback?: () => void): void;
150
+ /**
151
+ * @deprecated Priority signaling is no longer supported in Node.js.
152
+ */
153
+ priority(options: unknown): void;
154
+ /**
155
+ * ```js
156
+ * import http2 from 'node:http2';
157
+ * const client = http2.connect('http://example.org:8000');
158
+ * const { NGHTTP2_CANCEL } = http2.constants;
159
+ * const req = client.request({ ':path': '/' });
160
+ *
161
+ * // Cancel the stream if there's no activity after 5 seconds
162
+ * req.setTimeout(5000, () => req.close(NGHTTP2_CANCEL));
163
+ * ```
164
+ * @since v8.4.0
165
+ */
166
+ setTimeout(msecs: number, callback?: () => void): void;
167
+ /**
168
+ * Sends a trailing `HEADERS` frame to the connected HTTP/2 peer. This method
169
+ * will cause the `Http2Stream` to be immediately closed and must only be
170
+ * called after the `'wantTrailers'` event has been emitted. When sending a
171
+ * request or sending a response, the `options.waitForTrailers` option must be set
172
+ * in order to keep the `Http2Stream` open after the final `DATA` frame so that
173
+ * trailers can be sent.
174
+ *
175
+ * ```js
176
+ * import http2 from 'node:http2';
177
+ * const server = http2.createServer();
178
+ * server.on('stream', (stream) => {
179
+ * stream.respond(undefined, { waitForTrailers: true });
180
+ * stream.on('wantTrailers', () => {
181
+ * stream.sendTrailers({ xyz: 'abc' });
182
+ * });
183
+ * stream.end('Hello World');
184
+ * });
185
+ * ```
186
+ *
187
+ * The HTTP/1 specification forbids trailers from containing HTTP/2 pseudo-header
188
+ * fields (e.g. `':method'`, `':path'`, etc).
189
+ * @since v10.0.0
190
+ */
191
+ sendTrailers(headers: OutgoingHttpHeaders): void;
192
+ // #region InternalEventEmitter
193
+ addListener<E extends keyof Http2StreamEventMap>(
194
+ eventName: E,
195
+ listener: (...args: Http2StreamEventMap[E]) => void,
196
+ ): this;
197
+ addListener(eventName: string | symbol, listener: (...args: any[]) => void): this;
198
+ emit<E extends keyof Http2StreamEventMap>(eventName: E, ...args: Http2StreamEventMap[E]): boolean;
199
+ emit(eventName: string | symbol, ...args: any[]): boolean;
200
+ listenerCount<E extends keyof Http2StreamEventMap>(
201
+ eventName: E,
202
+ listener?: (...args: Http2StreamEventMap[E]) => void,
203
+ ): number;
204
+ listenerCount(eventName: string | symbol, listener?: (...args: any[]) => void): number;
205
+ listeners<E extends keyof Http2StreamEventMap>(eventName: E): ((...args: Http2StreamEventMap[E]) => void)[];
206
+ listeners(eventName: string | symbol): ((...args: any[]) => void)[];
207
+ off<E extends keyof Http2StreamEventMap>(
208
+ eventName: E,
209
+ listener: (...args: Http2StreamEventMap[E]) => void,
210
+ ): this;
211
+ off(eventName: string | symbol, listener: (...args: any[]) => void): this;
212
+ on<E extends keyof Http2StreamEventMap>(
213
+ eventName: E,
214
+ listener: (...args: Http2StreamEventMap[E]) => void,
215
+ ): this;
216
+ on(eventName: string | symbol, listener: (...args: any[]) => void): this;
217
+ once<E extends keyof Http2StreamEventMap>(
218
+ eventName: E,
219
+ listener: (...args: Http2StreamEventMap[E]) => void,
220
+ ): this;
221
+ once(eventName: string | symbol, listener: (...args: any[]) => void): this;
222
+ prependListener<E extends keyof Http2StreamEventMap>(
223
+ eventName: E,
224
+ listener: (...args: Http2StreamEventMap[E]) => void,
225
+ ): this;
226
+ prependListener(eventName: string | symbol, listener: (...args: any[]) => void): this;
227
+ prependOnceListener<E extends keyof Http2StreamEventMap>(
228
+ eventName: E,
229
+ listener: (...args: Http2StreamEventMap[E]) => void,
230
+ ): this;
231
+ prependOnceListener(eventName: string | symbol, listener: (...args: any[]) => void): this;
232
+ rawListeners<E extends keyof Http2StreamEventMap>(eventName: E): ((...args: Http2StreamEventMap[E]) => void)[];
233
+ rawListeners(eventName: string | symbol): ((...args: any[]) => void)[];
234
+ // eslint-disable-next-line @definitelytyped/no-unnecessary-generics
235
+ removeAllListeners<E extends keyof Http2StreamEventMap>(eventName?: E): this;
236
+ removeAllListeners(eventName?: string | symbol): this;
237
+ removeListener<E extends keyof Http2StreamEventMap>(
238
+ eventName: E,
239
+ listener: (...args: Http2StreamEventMap[E]) => void,
240
+ ): this;
241
+ removeListener(eventName: string | symbol, listener: (...args: any[]) => void): this;
242
+ // #endregion
243
+ }
244
+ interface ClientHttp2StreamEventMap extends Http2StreamEventMap {
245
+ "continue": [];
246
+ "headers": [headers: IncomingHttpHeaders & IncomingHttpStatusHeader, flags: number, rawHeaders: string[]];
247
+ "push": [headers: IncomingHttpHeaders, flags: number];
248
+ "response": [headers: IncomingHttpHeaders & IncomingHttpStatusHeader, flags: number, rawHeaders: string[]];
249
+ }
250
+ interface ClientHttp2Stream extends Http2Stream {
251
+ // #region InternalEventEmitter
252
+ addListener<E extends keyof ClientHttp2StreamEventMap>(
253
+ eventName: E,
254
+ listener: (...args: ClientHttp2StreamEventMap[E]) => void,
255
+ ): this;
256
+ addListener(eventName: string | symbol, listener: (...args: any[]) => void): this;
257
+ emit<E extends keyof ClientHttp2StreamEventMap>(eventName: E, ...args: ClientHttp2StreamEventMap[E]): boolean;
258
+ emit(eventName: string | symbol, ...args: any[]): boolean;
259
+ listenerCount<E extends keyof ClientHttp2StreamEventMap>(
260
+ eventName: E,
261
+ listener?: (...args: ClientHttp2StreamEventMap[E]) => void,
262
+ ): number;
263
+ listenerCount(eventName: string | symbol, listener?: (...args: any[]) => void): number;
264
+ listeners<E extends keyof ClientHttp2StreamEventMap>(
265
+ eventName: E,
266
+ ): ((...args: ClientHttp2StreamEventMap[E]) => void)[];
267
+ listeners(eventName: string | symbol): ((...args: any[]) => void)[];
268
+ off<E extends keyof ClientHttp2StreamEventMap>(
269
+ eventName: E,
270
+ listener: (...args: ClientHttp2StreamEventMap[E]) => void,
271
+ ): this;
272
+ off(eventName: string | symbol, listener: (...args: any[]) => void): this;
273
+ on<E extends keyof ClientHttp2StreamEventMap>(
274
+ eventName: E,
275
+ listener: (...args: ClientHttp2StreamEventMap[E]) => void,
276
+ ): this;
277
+ on(eventName: string | symbol, listener: (...args: any[]) => void): this;
278
+ once<E extends keyof ClientHttp2StreamEventMap>(
279
+ eventName: E,
280
+ listener: (...args: ClientHttp2StreamEventMap[E]) => void,
281
+ ): this;
282
+ once(eventName: string | symbol, listener: (...args: any[]) => void): this;
283
+ prependListener<E extends keyof ClientHttp2StreamEventMap>(
284
+ eventName: E,
285
+ listener: (...args: ClientHttp2StreamEventMap[E]) => void,
286
+ ): this;
287
+ prependListener(eventName: string | symbol, listener: (...args: any[]) => void): this;
288
+ prependOnceListener<E extends keyof ClientHttp2StreamEventMap>(
289
+ eventName: E,
290
+ listener: (...args: ClientHttp2StreamEventMap[E]) => void,
291
+ ): this;
292
+ prependOnceListener(eventName: string | symbol, listener: (...args: any[]) => void): this;
293
+ rawListeners<E extends keyof ClientHttp2StreamEventMap>(
294
+ eventName: E,
295
+ ): ((...args: ClientHttp2StreamEventMap[E]) => void)[];
296
+ rawListeners(eventName: string | symbol): ((...args: any[]) => void)[];
297
+ // eslint-disable-next-line @definitelytyped/no-unnecessary-generics
298
+ removeAllListeners<E extends keyof ClientHttp2StreamEventMap>(eventName?: E): this;
299
+ removeAllListeners(eventName?: string | symbol): this;
300
+ removeListener<E extends keyof ClientHttp2StreamEventMap>(
301
+ eventName: E,
302
+ listener: (...args: ClientHttp2StreamEventMap[E]) => void,
303
+ ): this;
304
+ removeListener(eventName: string | symbol, listener: (...args: any[]) => void): this;
305
+ // #endregion
306
+ }
307
+ interface ServerHttp2Stream extends Http2Stream {
308
+ /**
309
+ * True if headers were sent, false otherwise (read-only).
310
+ * @since v8.4.0
311
+ */
312
+ readonly headersSent: boolean;
313
+ /**
314
+ * Read-only property mapped to the `SETTINGS_ENABLE_PUSH` flag of the remote
315
+ * client's most recent `SETTINGS` frame. Will be `true` if the remote peer
316
+ * accepts push streams, `false` otherwise. Settings are the same for every `Http2Stream` in the same `Http2Session`.
317
+ * @since v8.4.0
318
+ */
319
+ readonly pushAllowed: boolean;
320
+ /**
321
+ * Sends an additional informational `HEADERS` frame to the connected HTTP/2 peer.
322
+ * @since v8.4.0
323
+ */
324
+ additionalHeaders(headers: OutgoingHttpHeaders): void;
325
+ /**
326
+ * Initiates a push stream. The callback is invoked with the new `Http2Stream` instance created for the push stream passed as the second argument, or an `Error` passed as the first argument.
327
+ *
328
+ * ```js
329
+ * import http2 from 'node:http2';
330
+ * const server = http2.createServer();
331
+ * server.on('stream', (stream) => {
332
+ * stream.respond({ ':status': 200 });
333
+ * stream.pushStream({ ':path': '/' }, (err, pushStream, headers) => {
334
+ * if (err) throw err;
335
+ * pushStream.respond({ ':status': 200 });
336
+ * pushStream.end('some pushed data');
337
+ * });
338
+ * stream.end('some data');
339
+ * });
340
+ * ```
341
+ *
342
+ * Setting the weight of a push stream is not allowed in the `HEADERS` frame. Pass
343
+ * a `weight` value to `http2stream.priority` with the `silent` option set to `true` to enable server-side bandwidth balancing between concurrent streams.
344
+ *
345
+ * Calling `http2stream.pushStream()` from within a pushed stream is not permitted
346
+ * and will throw an error.
347
+ * @since v8.4.0
348
+ * @param callback Callback that is called once the push stream has been initiated.
349
+ */
350
+ pushStream(
351
+ headers: OutgoingHttpHeaders,
352
+ callback?: (err: Error | null, pushStream: ServerHttp2Stream, headers: OutgoingHttpHeaders) => void,
353
+ ): void;
354
+ pushStream(
355
+ headers: OutgoingHttpHeaders,
356
+ options?: Pick<ClientSessionRequestOptions, "exclusive" | "parent">,
357
+ callback?: (err: Error | null, pushStream: ServerHttp2Stream, headers: OutgoingHttpHeaders) => void,
358
+ ): void;
359
+ /**
360
+ * ```js
361
+ * import http2 from 'node:http2';
362
+ * const server = http2.createServer();
363
+ * server.on('stream', (stream) => {
364
+ * stream.respond({ ':status': 200 });
365
+ * stream.end('some data');
366
+ * });
367
+ * ```
368
+ *
369
+ * Initiates a response. When the `options.waitForTrailers` option is set, the `'wantTrailers'` event
370
+ * will be emitted immediately after queuing the last chunk of payload data to be sent.
371
+ * The `http2stream.sendTrailers()` method can then be used to send trailing header fields to the peer.
372
+ *
373
+ * When `options.waitForTrailers` is set, the `Http2Stream` will not automatically
374
+ * close when the final `DATA` frame is transmitted. User code must call either `http2stream.sendTrailers()` or `http2stream.close()` to close the `Http2Stream`.
375
+ *
376
+ * ```js
377
+ * import http2 from 'node:http2';
378
+ * const server = http2.createServer();
379
+ * server.on('stream', (stream) => {
380
+ * stream.respond({ ':status': 200 }, { waitForTrailers: true });
381
+ * stream.on('wantTrailers', () => {
382
+ * stream.sendTrailers({ ABC: 'some value to send' });
383
+ * });
384
+ * stream.end('some data');
385
+ * });
386
+ * ```
387
+ * @since v8.4.0
388
+ */
389
+ respond(headers?: OutgoingHttpHeaders | readonly string[], options?: ServerStreamResponseOptions): void;
390
+ /**
391
+ * Initiates a response whose data is read from the given file descriptor. No
392
+ * validation is performed on the given file descriptor. If an error occurs while
393
+ * attempting to read data using the file descriptor, the `Http2Stream` will be
394
+ * closed using an `RST_STREAM` frame using the standard `INTERNAL_ERROR` code.
395
+ *
396
+ * When used, the `Http2Stream` object's `Duplex` interface will be closed
397
+ * automatically.
398
+ *
399
+ * ```js
400
+ * import http2 from 'node:http2';
401
+ * import fs from 'node:fs';
402
+ *
403
+ * const server = http2.createServer();
404
+ * server.on('stream', (stream) => {
405
+ * const fd = fs.openSync('/some/file', 'r');
406
+ *
407
+ * const stat = fs.fstatSync(fd);
408
+ * const headers = {
409
+ * 'content-length': stat.size,
410
+ * 'last-modified': stat.mtime.toUTCString(),
411
+ * 'content-type': 'text/plain; charset=utf-8',
412
+ * };
413
+ * stream.respondWithFD(fd, headers);
414
+ * stream.on('close', () => fs.closeSync(fd));
415
+ * });
416
+ * ```
417
+ *
418
+ * The optional `options.statCheck` function may be specified to give user code
419
+ * an opportunity to set additional content headers based on the `fs.Stat` details
420
+ * of the given fd. If the `statCheck` function is provided, the `http2stream.respondWithFD()` method will
421
+ * perform an `fs.fstat()` call to collect details on the provided file descriptor.
422
+ *
423
+ * The `offset` and `length` options may be used to limit the response to a
424
+ * specific range subset. This can be used, for instance, to support HTTP Range
425
+ * requests.
426
+ *
427
+ * The file descriptor or `FileHandle` is not closed when the stream is closed,
428
+ * so it will need to be closed manually once it is no longer needed.
429
+ * Using the same file descriptor concurrently for multiple streams
430
+ * is not supported and may result in data loss. Re-using a file descriptor
431
+ * after a stream has finished is supported.
432
+ *
433
+ * When the `options.waitForTrailers` option is set, the `'wantTrailers'` event
434
+ * will be emitted immediately after queuing the last chunk of payload data to be
435
+ * sent. The `http2stream.sendTrailers()` method can then be used to sent trailing
436
+ * header fields to the peer.
437
+ *
438
+ * When `options.waitForTrailers` is set, the `Http2Stream` will not automatically
439
+ * close when the final `DATA` frame is transmitted. User code _must_ call either `http2stream.sendTrailers()`
440
+ * or `http2stream.close()` to close the `Http2Stream`.
441
+ *
442
+ * ```js
443
+ * import http2 from 'node:http2';
444
+ * import fs from 'node:fs';
445
+ *
446
+ * const server = http2.createServer();
447
+ * server.on('stream', (stream) => {
448
+ * const fd = fs.openSync('/some/file', 'r');
449
+ *
450
+ * const stat = fs.fstatSync(fd);
451
+ * const headers = {
452
+ * 'content-length': stat.size,
453
+ * 'last-modified': stat.mtime.toUTCString(),
454
+ * 'content-type': 'text/plain; charset=utf-8',
455
+ * };
456
+ * stream.respondWithFD(fd, headers, { waitForTrailers: true });
457
+ * stream.on('wantTrailers', () => {
458
+ * stream.sendTrailers({ ABC: 'some value to send' });
459
+ * });
460
+ *
461
+ * stream.on('close', () => fs.closeSync(fd));
462
+ * });
463
+ * ```
464
+ * @since v8.4.0
465
+ * @param fd A readable file descriptor.
466
+ */
467
+ respondWithFD(
468
+ fd: number | fs.promises.FileHandle,
469
+ headers?: OutgoingHttpHeaders,
470
+ options?: ServerStreamFileResponseOptions,
471
+ ): void;
472
+ /**
473
+ * Sends a regular file as the response. The `path` must specify a regular file
474
+ * or an `'error'` event will be emitted on the `Http2Stream` object.
475
+ *
476
+ * When used, the `Http2Stream` object's `Duplex` interface will be closed
477
+ * automatically.
478
+ *
479
+ * The optional `options.statCheck` function may be specified to give user code
480
+ * an opportunity to set additional content headers based on the `fs.Stat` details
481
+ * of the given file:
482
+ *
483
+ * If an error occurs while attempting to read the file data, the `Http2Stream` will be closed using an
484
+ * `RST_STREAM` frame using the standard `INTERNAL_ERROR` code.
485
+ * If the `onError` callback is defined, then it will be called. Otherwise, the stream will be destroyed.
486
+ *
487
+ * Example using a file path:
488
+ *
489
+ * ```js
490
+ * import http2 from 'node:http2';
491
+ * const server = http2.createServer();
492
+ * server.on('stream', (stream) => {
493
+ * function statCheck(stat, headers) {
494
+ * headers['last-modified'] = stat.mtime.toUTCString();
495
+ * }
496
+ *
497
+ * function onError(err) {
498
+ * // stream.respond() can throw if the stream has been destroyed by
499
+ * // the other side.
500
+ * try {
501
+ * if (err.code === 'ENOENT') {
502
+ * stream.respond({ ':status': 404 });
503
+ * } else {
504
+ * stream.respond({ ':status': 500 });
505
+ * }
506
+ * } catch (err) {
507
+ * // Perform actual error handling.
508
+ * console.error(err);
509
+ * }
510
+ * stream.end();
511
+ * }
512
+ *
513
+ * stream.respondWithFile('/some/file',
514
+ * { 'content-type': 'text/plain; charset=utf-8' },
515
+ * { statCheck, onError });
516
+ * });
517
+ * ```
518
+ *
519
+ * The `options.statCheck` function may also be used to cancel the send operation
520
+ * by returning `false`. For instance, a conditional request may check the stat
521
+ * results to determine if the file has been modified to return an appropriate `304` response:
522
+ *
523
+ * ```js
524
+ * import http2 from 'node:http2';
525
+ * const server = http2.createServer();
526
+ * server.on('stream', (stream) => {
527
+ * function statCheck(stat, headers) {
528
+ * // Check the stat here...
529
+ * stream.respond({ ':status': 304 });
530
+ * return false; // Cancel the send operation
531
+ * }
532
+ * stream.respondWithFile('/some/file',
533
+ * { 'content-type': 'text/plain; charset=utf-8' },
534
+ * { statCheck });
535
+ * });
536
+ * ```
537
+ *
538
+ * The `content-length` header field will be automatically set.
539
+ *
540
+ * The `offset` and `length` options may be used to limit the response to a
541
+ * specific range subset. This can be used, for instance, to support HTTP Range
542
+ * requests.
543
+ *
544
+ * The `options.onError` function may also be used to handle all the errors
545
+ * that could happen before the delivery of the file is initiated. The
546
+ * default behavior is to destroy the stream.
547
+ *
548
+ * When the `options.waitForTrailers` option is set, the `'wantTrailers'` event
549
+ * will be emitted immediately after queuing the last chunk of payload data to be
550
+ * sent. The `http2stream.sendTrailers()` method can then be used to sent trailing
551
+ * header fields to the peer.
552
+ *
553
+ * When `options.waitForTrailers` is set, the `Http2Stream` will not automatically
554
+ * close when the final `DATA` frame is transmitted. User code must call either`http2stream.sendTrailers()` or `http2stream.close()` to close the`Http2Stream`.
555
+ *
556
+ * ```js
557
+ * import http2 from 'node:http2';
558
+ * const server = http2.createServer();
559
+ * server.on('stream', (stream) => {
560
+ * stream.respondWithFile('/some/file',
561
+ * { 'content-type': 'text/plain; charset=utf-8' },
562
+ * { waitForTrailers: true });
563
+ * stream.on('wantTrailers', () => {
564
+ * stream.sendTrailers({ ABC: 'some value to send' });
565
+ * });
566
+ * });
567
+ * ```
568
+ * @since v8.4.0
569
+ */
570
+ respondWithFile(
571
+ path: string,
572
+ headers?: OutgoingHttpHeaders,
573
+ options?: ServerStreamFileResponseOptionsWithError,
574
+ ): void;
575
+ }
576
+ // Http2Session
577
+ interface Settings {
578
+ headerTableSize?: number | undefined;
579
+ enablePush?: boolean | undefined;
580
+ initialWindowSize?: number | undefined;
581
+ maxFrameSize?: number | undefined;
582
+ maxConcurrentStreams?: number | undefined;
583
+ maxHeaderListSize?: number | undefined;
584
+ enableConnectProtocol?: boolean | undefined;
585
+ }
586
+ interface ClientSessionRequestOptions {
587
+ endStream?: boolean | undefined;
588
+ exclusive?: boolean | undefined;
589
+ parent?: number | undefined;
590
+ waitForTrailers?: boolean | undefined;
591
+ signal?: AbortSignal | undefined;
592
+ }
593
+ interface SessionState {
594
+ effectiveLocalWindowSize?: number | undefined;
595
+ effectiveRecvDataLength?: number | undefined;
596
+ nextStreamID?: number | undefined;
597
+ localWindowSize?: number | undefined;
598
+ lastProcStreamID?: number | undefined;
599
+ remoteWindowSize?: number | undefined;
600
+ outboundQueueSize?: number | undefined;
601
+ deflateDynamicTableSize?: number | undefined;
602
+ inflateDynamicTableSize?: number | undefined;
603
+ }
604
+ interface Http2SessionEventMap {
605
+ "close": [];
606
+ "connect": [session: Http2Session, socket: net.Socket | tls.TLSSocket];
607
+ "error": [err: Error];
608
+ "frameError": [type: number, code: number, id: number];
609
+ "goaway": [errorCode: number, lastStreamID: number, opaqueData?: NonSharedBuffer];
610
+ "localSettings": [settings: Settings];
611
+ "ping": [payload: Buffer];
612
+ "remoteSettings": [settings: Settings];
613
+ "stream": [
614
+ stream: Http2Stream,
615
+ headers: IncomingHttpHeaders & IncomingHttpStatusHeader,
616
+ flags: number,
617
+ rawHeaders: string[],
618
+ ];
619
+ "timeout": [];
620
+ }
621
+ interface Http2Session extends InternalEventEmitter<Http2SessionEventMap> {
622
+ /**
623
+ * Value will be `undefined` if the `Http2Session` is not yet connected to a
624
+ * socket, `h2c` if the `Http2Session` is not connected to a `TLSSocket`, or
625
+ * will return the value of the connected `TLSSocket`'s own `alpnProtocol` property.
626
+ * @since v9.4.0
627
+ */
628
+ readonly alpnProtocol?: string | undefined;
629
+ /**
630
+ * Will be `true` if this `Http2Session` instance has been closed, otherwise `false`.
631
+ * @since v9.4.0
632
+ */
633
+ readonly closed: boolean;
634
+ /**
635
+ * Will be `true` if this `Http2Session` instance is still connecting, will be set
636
+ * to `false` before emitting `connect` event and/or calling the `http2.connect` callback.
637
+ * @since v10.0.0
638
+ */
639
+ readonly connecting: boolean;
640
+ /**
641
+ * Will be `true` if this `Http2Session` instance has been destroyed and must no
642
+ * longer be used, otherwise `false`.
643
+ * @since v8.4.0
644
+ */
645
+ readonly destroyed: boolean;
646
+ /**
647
+ * Value is `undefined` if the `Http2Session` session socket has not yet been
648
+ * connected, `true` if the `Http2Session` is connected with a `TLSSocket`,
649
+ * and `false` if the `Http2Session` is connected to any other kind of socket
650
+ * or stream.
651
+ * @since v9.4.0
652
+ */
653
+ readonly encrypted?: boolean | undefined;
654
+ /**
655
+ * A prototype-less object describing the current local settings of this `Http2Session`.
656
+ * The local settings are local to _this_`Http2Session` instance.
657
+ * @since v8.4.0
658
+ */
659
+ readonly localSettings: Settings;
660
+ /**
661
+ * If the `Http2Session` is connected to a `TLSSocket`, the `originSet` property
662
+ * will return an `Array` of origins for which the `Http2Session` may be
663
+ * considered authoritative.
664
+ *
665
+ * The `originSet` property is only available when using a secure TLS connection.
666
+ * @since v9.4.0
667
+ */
668
+ readonly originSet?: string[] | undefined;
669
+ /**
670
+ * Indicates whether the `Http2Session` is currently waiting for acknowledgment of
671
+ * a sent `SETTINGS` frame. Will be `true` after calling the `http2session.settings()` method.
672
+ * Will be `false` once all sent `SETTINGS` frames have been acknowledged.
673
+ * @since v8.4.0
674
+ */
675
+ readonly pendingSettingsAck: boolean;
676
+ /**
677
+ * A prototype-less object describing the current remote settings of this`Http2Session`.
678
+ * The remote settings are set by the _connected_ HTTP/2 peer.
679
+ * @since v8.4.0
680
+ */
681
+ readonly remoteSettings: Settings;
682
+ /**
683
+ * Returns a `Proxy` object that acts as a `net.Socket` (or `tls.TLSSocket`) but
684
+ * limits available methods to ones safe to use with HTTP/2.
685
+ *
686
+ * `destroy`, `emit`, `end`, `pause`, `read`, `resume`, and `write` will throw
687
+ * an error with code `ERR_HTTP2_NO_SOCKET_MANIPULATION`. See `Http2Session and Sockets` for more information.
688
+ *
689
+ * `setTimeout` method will be called on this `Http2Session`.
690
+ *
691
+ * All other interactions will be routed directly to the socket.
692
+ * @since v8.4.0
693
+ */
694
+ readonly socket: net.Socket | tls.TLSSocket;
695
+ /**
696
+ * Provides miscellaneous information about the current state of the`Http2Session`.
697
+ *
698
+ * An object describing the current status of this `Http2Session`.
699
+ * @since v8.4.0
700
+ */
701
+ readonly state: SessionState;
702
+ /**
703
+ * The `http2session.type` will be equal to `http2.constants.NGHTTP2_SESSION_SERVER` if this `Http2Session` instance is a
704
+ * server, and `http2.constants.NGHTTP2_SESSION_CLIENT` if the instance is a
705
+ * client.
706
+ * @since v8.4.0
707
+ */
708
+ readonly type: number;
709
+ /**
710
+ * Gracefully closes the `Http2Session`, allowing any existing streams to
711
+ * complete on their own and preventing new `Http2Stream` instances from being
712
+ * created. Once closed, `http2session.destroy()`_might_ be called if there
713
+ * are no open `Http2Stream` instances.
714
+ *
715
+ * If specified, the `callback` function is registered as a handler for the`'close'` event.
716
+ * @since v9.4.0
717
+ */
718
+ close(callback?: () => void): void;
719
+ /**
720
+ * Immediately terminates the `Http2Session` and the associated `net.Socket` or `tls.TLSSocket`.
721
+ *
722
+ * Once destroyed, the `Http2Session` will emit the `'close'` event. If `error` is not undefined, an `'error'` event will be emitted immediately before the `'close'` event.
723
+ *
724
+ * If there are any remaining open `Http2Streams` associated with the `Http2Session`, those will also be destroyed.
725
+ * @since v8.4.0
726
+ * @param error An `Error` object if the `Http2Session` is being destroyed due to an error.
727
+ * @param code The HTTP/2 error code to send in the final `GOAWAY` frame. If unspecified, and `error` is not undefined, the default is `INTERNAL_ERROR`, otherwise defaults to `NO_ERROR`.
728
+ */
729
+ destroy(error?: Error, code?: number): void;
730
+ /**
731
+ * Transmits a `GOAWAY` frame to the connected peer _without_ shutting down the`Http2Session`.
732
+ * @since v9.4.0
733
+ * @param code An HTTP/2 error code
734
+ * @param lastStreamID The numeric ID of the last processed `Http2Stream`
735
+ * @param opaqueData A `TypedArray` or `DataView` instance containing additional data to be carried within the `GOAWAY` frame.
736
+ */
737
+ goaway(code?: number, lastStreamID?: number, opaqueData?: NodeJS.ArrayBufferView): void;
738
+ /**
739
+ * Sends a `PING` frame to the connected HTTP/2 peer. A `callback` function must
740
+ * be provided. The method will return `true` if the `PING` was sent, `false` otherwise.
741
+ *
742
+ * The maximum number of outstanding (unacknowledged) pings is determined by the `maxOutstandingPings` configuration option. The default maximum is 10.
743
+ *
744
+ * If provided, the `payload` must be a `Buffer`, `TypedArray`, or `DataView` containing 8 bytes of data that will be transmitted with the `PING` and
745
+ * returned with the ping acknowledgment.
746
+ *
747
+ * The callback will be invoked with three arguments: an error argument that will
748
+ * be `null` if the `PING` was successfully acknowledged, a `duration` argument
749
+ * that reports the number of milliseconds elapsed since the ping was sent and the
750
+ * acknowledgment was received, and a `Buffer` containing the 8-byte `PING` payload.
751
+ *
752
+ * ```js
753
+ * session.ping(Buffer.from('abcdefgh'), (err, duration, payload) => {
754
+ * if (!err) {
755
+ * console.log(`Ping acknowledged in ${duration} milliseconds`);
756
+ * console.log(`With payload '${payload.toString()}'`);
757
+ * }
758
+ * });
759
+ * ```
760
+ *
761
+ * If the `payload` argument is not specified, the default payload will be the
762
+ * 64-bit timestamp (little endian) marking the start of the `PING` duration.
763
+ * @since v8.9.3
764
+ * @param payload Optional ping payload.
765
+ */
766
+ ping(callback: (err: Error | null, duration: number, payload: NonSharedBuffer) => void): boolean;
767
+ ping(
768
+ payload: NodeJS.ArrayBufferView,
769
+ callback: (err: Error | null, duration: number, payload: NonSharedBuffer) => void,
770
+ ): boolean;
771
+ /**
772
+ * Calls `ref()` on this `Http2Session` instance's underlying `net.Socket`.
773
+ * @since v9.4.0
774
+ */
775
+ ref(): void;
776
+ /**
777
+ * Sets the local endpoint's window size.
778
+ * The `windowSize` is the total window size to set, not
779
+ * the delta.
780
+ *
781
+ * ```js
782
+ * import http2 from 'node:http2';
783
+ *
784
+ * const server = http2.createServer();
785
+ * const expectedWindowSize = 2 ** 20;
786
+ * server.on('connect', (session) => {
787
+ *
788
+ * // Set local window size to be 2 ** 20
789
+ * session.setLocalWindowSize(expectedWindowSize);
790
+ * });
791
+ * ```
792
+ * @since v15.3.0, v14.18.0
793
+ */
794
+ setLocalWindowSize(windowSize: number): void;
795
+ /**
796
+ * Used to set a callback function that is called when there is no activity on
797
+ * the `Http2Session` after `msecs` milliseconds. The given `callback` is
798
+ * registered as a listener on the `'timeout'` event.
799
+ * @since v8.4.0
800
+ */
801
+ setTimeout(msecs: number, callback?: () => void): void;
802
+ /**
803
+ * Updates the current local settings for this `Http2Session` and sends a new `SETTINGS` frame to the connected HTTP/2 peer.
804
+ *
805
+ * Once called, the `http2session.pendingSettingsAck` property will be `true` while the session is waiting for the remote peer to acknowledge the new
806
+ * settings.
807
+ *
808
+ * The new settings will not become effective until the `SETTINGS` acknowledgment
809
+ * is received and the `'localSettings'` event is emitted. It is possible to send
810
+ * multiple `SETTINGS` frames while acknowledgment is still pending.
811
+ * @since v8.4.0
812
+ * @param callback Callback that is called once the session is connected or right away if the session is already connected.
813
+ */
814
+ settings(
815
+ settings: Settings,
816
+ callback?: (err: Error | null, settings: Settings, duration: number) => void,
817
+ ): void;
818
+ /**
819
+ * Calls `unref()` on this `Http2Session`instance's underlying `net.Socket`.
820
+ * @since v9.4.0
821
+ */
822
+ unref(): void;
823
+ }
824
+ interface ClientHttp2SessionEventMap extends Http2SessionEventMap {
825
+ "altsvc": [alt: string, origin: string, streamId: number];
826
+ "connect": [session: ClientHttp2Session, socket: net.Socket | tls.TLSSocket];
827
+ "origin": [origins: string[]];
828
+ "stream": [
829
+ stream: ClientHttp2Stream,
830
+ headers: IncomingHttpHeaders & IncomingHttpStatusHeader,
831
+ flags: number,
832
+ rawHeaders: string[],
833
+ ];
834
+ }
835
+ interface ClientHttp2Session extends Http2Session {
836
+ /**
837
+ * For HTTP/2 Client `Http2Session` instances only, the `http2session.request()` creates and returns an `Http2Stream` instance that can be used to send an
838
+ * HTTP/2 request to the connected server.
839
+ *
840
+ * When a `ClientHttp2Session` is first created, the socket may not yet be
841
+ * connected. if `clienthttp2session.request()` is called during this time, the
842
+ * actual request will be deferred until the socket is ready to go.
843
+ * If the `session` is closed before the actual request be executed, an `ERR_HTTP2_GOAWAY_SESSION` is thrown.
844
+ *
845
+ * This method is only available if `http2session.type` is equal to `http2.constants.NGHTTP2_SESSION_CLIENT`.
846
+ *
847
+ * ```js
848
+ * import http2 from 'node:http2';
849
+ * const clientSession = http2.connect('https://localhost:1234');
850
+ * const {
851
+ * HTTP2_HEADER_PATH,
852
+ * HTTP2_HEADER_STATUS,
853
+ * } = http2.constants;
854
+ *
855
+ * const req = clientSession.request({ [HTTP2_HEADER_PATH]: '/' });
856
+ * req.on('response', (headers) => {
857
+ * console.log(headers[HTTP2_HEADER_STATUS]);
858
+ * req.on('data', (chunk) => { // .. });
859
+ * req.on('end', () => { // .. });
860
+ * });
861
+ * ```
862
+ *
863
+ * When the `options.waitForTrailers` option is set, the `'wantTrailers'` event
864
+ * is emitted immediately after queuing the last chunk of payload data to be sent.
865
+ * The `http2stream.sendTrailers()` method can then be called to send trailing
866
+ * headers to the peer.
867
+ *
868
+ * When `options.waitForTrailers` is set, the `Http2Stream` will not automatically
869
+ * close when the final `DATA` frame is transmitted. User code must call either`http2stream.sendTrailers()` or `http2stream.close()` to close the`Http2Stream`.
870
+ *
871
+ * When `options.signal` is set with an `AbortSignal` and then `abort` on the
872
+ * corresponding `AbortController` is called, the request will emit an `'error'`event with an `AbortError` error.
873
+ *
874
+ * The `:method` and `:path` pseudo-headers are not specified within `headers`,
875
+ * they respectively default to:
876
+ *
877
+ * * `:method` \= `'GET'`
878
+ * * `:path` \= `/`
879
+ * @since v8.4.0
880
+ */
881
+ request(
882
+ headers?: OutgoingHttpHeaders | readonly string[],
883
+ options?: ClientSessionRequestOptions,
884
+ ): ClientHttp2Stream;
885
+ // #region InternalEventEmitter
886
+ addListener<E extends keyof ClientHttp2StreamEventMap>(
887
+ eventName: E,
888
+ listener: (...args: ClientHttp2StreamEventMap[E]) => void,
889
+ ): this;
890
+ addListener(eventName: string | symbol, listener: (...args: any[]) => void): this;
891
+ emit<E extends keyof ClientHttp2StreamEventMap>(eventName: E, ...args: ClientHttp2StreamEventMap[E]): boolean;
892
+ emit(eventName: string | symbol, ...args: any[]): boolean;
893
+ listenerCount<E extends keyof ClientHttp2StreamEventMap>(
894
+ eventName: E,
895
+ listener?: (...args: ClientHttp2StreamEventMap[E]) => void,
896
+ ): number;
897
+ listenerCount(eventName: string | symbol, listener?: (...args: any[]) => void): number;
898
+ listeners<E extends keyof ClientHttp2StreamEventMap>(
899
+ eventName: E,
900
+ ): ((...args: ClientHttp2StreamEventMap[E]) => void)[];
901
+ listeners(eventName: string | symbol): ((...args: any[]) => void)[];
902
+ off<E extends keyof ClientHttp2StreamEventMap>(
903
+ eventName: E,
904
+ listener: (...args: ClientHttp2StreamEventMap[E]) => void,
905
+ ): this;
906
+ off(eventName: string | symbol, listener: (...args: any[]) => void): this;
907
+ on<E extends keyof ClientHttp2StreamEventMap>(
908
+ eventName: E,
909
+ listener: (...args: ClientHttp2StreamEventMap[E]) => void,
910
+ ): this;
911
+ on(eventName: string | symbol, listener: (...args: any[]) => void): this;
912
+ once<E extends keyof ClientHttp2StreamEventMap>(
913
+ eventName: E,
914
+ listener: (...args: ClientHttp2StreamEventMap[E]) => void,
915
+ ): this;
916
+ once(eventName: string | symbol, listener: (...args: any[]) => void): this;
917
+ prependListener<E extends keyof ClientHttp2StreamEventMap>(
918
+ eventName: E,
919
+ listener: (...args: ClientHttp2StreamEventMap[E]) => void,
920
+ ): this;
921
+ prependListener(eventName: string | symbol, listener: (...args: any[]) => void): this;
922
+ prependOnceListener<E extends keyof ClientHttp2StreamEventMap>(
923
+ eventName: E,
924
+ listener: (...args: ClientHttp2StreamEventMap[E]) => void,
925
+ ): this;
926
+ prependOnceListener(eventName: string | symbol, listener: (...args: any[]) => void): this;
927
+ rawListeners<E extends keyof ClientHttp2StreamEventMap>(
928
+ eventName: E,
929
+ ): ((...args: ClientHttp2StreamEventMap[E]) => void)[];
930
+ rawListeners(eventName: string | symbol): ((...args: any[]) => void)[];
931
+ // eslint-disable-next-line @definitelytyped/no-unnecessary-generics
932
+ removeAllListeners<E extends keyof ClientHttp2StreamEventMap>(eventName?: E): this;
933
+ removeAllListeners(eventName?: string | symbol): this;
934
+ removeListener<E extends keyof ClientHttp2StreamEventMap>(
935
+ eventName: E,
936
+ listener: (...args: ClientHttp2StreamEventMap[E]) => void,
937
+ ): this;
938
+ removeListener(eventName: string | symbol, listener: (...args: any[]) => void): this;
939
+ // #endregion
940
+ }
941
+ interface AlternativeServiceOptions {
942
+ origin: number | string | url.URL;
943
+ }
944
+ interface ServerHttp2SessionEventMap<
945
+ Http1Request extends typeof IncomingMessage = typeof IncomingMessage,
946
+ Http1Response extends typeof ServerResponse<InstanceType<Http1Request>> = typeof ServerResponse,
947
+ Http2Request extends typeof Http2ServerRequest = typeof Http2ServerRequest,
948
+ Http2Response extends typeof Http2ServerResponse<InstanceType<Http2Request>> = typeof Http2ServerResponse,
949
+ > extends Http2SessionEventMap {
950
+ "connect": [
951
+ session: ServerHttp2Session<Http1Request, Http1Response, Http2Request, Http2Response>,
952
+ socket: net.Socket | tls.TLSSocket,
953
+ ];
954
+ "stream": [stream: ServerHttp2Stream, headers: IncomingHttpHeaders, flags: number, rawHeaders: string[]];
955
+ }
956
+ interface ServerHttp2Session<
957
+ Http1Request extends typeof IncomingMessage = typeof IncomingMessage,
958
+ Http1Response extends typeof ServerResponse<InstanceType<Http1Request>> = typeof ServerResponse,
959
+ Http2Request extends typeof Http2ServerRequest = typeof Http2ServerRequest,
960
+ Http2Response extends typeof Http2ServerResponse<InstanceType<Http2Request>> = typeof Http2ServerResponse,
961
+ > extends Http2Session {
962
+ readonly server:
963
+ | Http2Server<Http1Request, Http1Response, Http2Request, Http2Response>
964
+ | Http2SecureServer<Http1Request, Http1Response, Http2Request, Http2Response>;
965
+ /**
966
+ * Submits an `ALTSVC` frame (as defined by [RFC 7838](https://tools.ietf.org/html/rfc7838)) to the connected client.
967
+ *
968
+ * ```js
969
+ * import http2 from 'node:http2';
970
+ *
971
+ * const server = http2.createServer();
972
+ * server.on('session', (session) => {
973
+ * // Set altsvc for origin https://example.org:80
974
+ * session.altsvc('h2=":8000"', 'https://example.org:80');
975
+ * });
976
+ *
977
+ * server.on('stream', (stream) => {
978
+ * // Set altsvc for a specific stream
979
+ * stream.session.altsvc('h2=":8000"', stream.id);
980
+ * });
981
+ * ```
982
+ *
983
+ * Sending an `ALTSVC` frame with a specific stream ID indicates that the alternate
984
+ * service is associated with the origin of the given `Http2Stream`.
985
+ *
986
+ * The `alt` and origin string _must_ contain only ASCII bytes and are
987
+ * strictly interpreted as a sequence of ASCII bytes. The special value `'clear'`may be passed to clear any previously set alternative service for a given
988
+ * domain.
989
+ *
990
+ * When a string is passed for the `originOrStream` argument, it will be parsed as
991
+ * a URL and the origin will be derived. For instance, the origin for the
992
+ * HTTP URL `'https://example.org/foo/bar'` is the ASCII string`'https://example.org'`. An error will be thrown if either the given string
993
+ * cannot be parsed as a URL or if a valid origin cannot be derived.
994
+ *
995
+ * A `URL` object, or any object with an `origin` property, may be passed as`originOrStream`, in which case the value of the `origin` property will be
996
+ * used. The value of the `origin` property _must_ be a properly serialized
997
+ * ASCII origin.
998
+ * @since v9.4.0
999
+ * @param alt A description of the alternative service configuration as defined by `RFC 7838`.
1000
+ * @param originOrStream Either a URL string specifying the origin (or an `Object` with an `origin` property) or the numeric identifier of an active `Http2Stream` as given by the
1001
+ * `http2stream.id` property.
1002
+ */
1003
+ altsvc(alt: string, originOrStream: number | string | url.URL | AlternativeServiceOptions): void;
1004
+ /**
1005
+ * Submits an `ORIGIN` frame (as defined by [RFC 8336](https://tools.ietf.org/html/rfc8336)) to the connected client
1006
+ * to advertise the set of origins for which the server is capable of providing
1007
+ * authoritative responses.
1008
+ *
1009
+ * ```js
1010
+ * import http2 from 'node:http2';
1011
+ * const options = getSecureOptionsSomehow();
1012
+ * const server = http2.createSecureServer(options);
1013
+ * server.on('stream', (stream) => {
1014
+ * stream.respond();
1015
+ * stream.end('ok');
1016
+ * });
1017
+ * server.on('session', (session) => {
1018
+ * session.origin('https://example.com', 'https://example.org');
1019
+ * });
1020
+ * ```
1021
+ *
1022
+ * When a string is passed as an `origin`, it will be parsed as a URL and the
1023
+ * origin will be derived. For instance, the origin for the HTTP URL `'https://example.org/foo/bar'` is the ASCII string` 'https://example.org'`. An error will be thrown if either the given
1024
+ * string
1025
+ * cannot be parsed as a URL or if a valid origin cannot be derived.
1026
+ *
1027
+ * A `URL` object, or any object with an `origin` property, may be passed as
1028
+ * an `origin`, in which case the value of the `origin` property will be
1029
+ * used. The value of the `origin` property _must_ be a properly serialized
1030
+ * ASCII origin.
1031
+ *
1032
+ * Alternatively, the `origins` option may be used when creating a new HTTP/2
1033
+ * server using the `http2.createSecureServer()` method:
1034
+ *
1035
+ * ```js
1036
+ * import http2 from 'node:http2';
1037
+ * const options = getSecureOptionsSomehow();
1038
+ * options.origins = ['https://example.com', 'https://example.org'];
1039
+ * const server = http2.createSecureServer(options);
1040
+ * server.on('stream', (stream) => {
1041
+ * stream.respond();
1042
+ * stream.end('ok');
1043
+ * });
1044
+ * ```
1045
+ * @since v10.12.0
1046
+ * @param origins One or more URL Strings passed as separate arguments.
1047
+ */
1048
+ origin(
1049
+ ...origins: Array<
1050
+ | string
1051
+ | url.URL
1052
+ | {
1053
+ origin: string;
1054
+ }
1055
+ >
1056
+ ): void;
1057
+ // #region InternalEventEmitter
1058
+ addListener<E extends keyof ServerHttp2SessionEventMap>(
1059
+ eventName: E,
1060
+ listener: (
1061
+ ...args: ServerHttp2SessionEventMap<Http1Request, Http1Response, Http2Request, Http2Response>[E]
1062
+ ) => void,
1063
+ ): this;
1064
+ addListener(eventName: string | symbol, listener: (...args: any[]) => void): this;
1065
+ emit<E extends keyof ServerHttp2SessionEventMap>(
1066
+ eventName: E,
1067
+ ...args: ServerHttp2SessionEventMap<Http1Request, Http1Response, Http2Request, Http2Response>[E]
1068
+ ): boolean;
1069
+ emit(eventName: string | symbol, ...args: any[]): boolean;
1070
+ listenerCount<E extends keyof ServerHttp2SessionEventMap>(
1071
+ eventName: E,
1072
+ listener?: (
1073
+ ...args: ServerHttp2SessionEventMap<Http1Request, Http1Response, Http2Request, Http2Response>[E]
1074
+ ) => void,
1075
+ ): number;
1076
+ listenerCount(eventName: string | symbol, listener?: (...args: any[]) => void): number;
1077
+ listeners<E extends keyof ServerHttp2SessionEventMap>(
1078
+ eventName: E,
1079
+ ): ((
1080
+ ...args: ServerHttp2SessionEventMap<Http1Request, Http1Response, Http2Request, Http2Response>[E]
1081
+ ) => void)[];
1082
+ listeners(eventName: string | symbol): ((...args: any[]) => void)[];
1083
+ off<E extends keyof ServerHttp2SessionEventMap>(
1084
+ eventName: E,
1085
+ listener: (
1086
+ ...args: ServerHttp2SessionEventMap<Http1Request, Http1Response, Http2Request, Http2Response>[E]
1087
+ ) => void,
1088
+ ): this;
1089
+ off(eventName: string | symbol, listener: (...args: any[]) => void): this;
1090
+ on<E extends keyof ServerHttp2SessionEventMap>(
1091
+ eventName: E,
1092
+ listener: (
1093
+ ...args: ServerHttp2SessionEventMap<Http1Request, Http1Response, Http2Request, Http2Response>[E]
1094
+ ) => void,
1095
+ ): this;
1096
+ on(eventName: string | symbol, listener: (...args: any[]) => void): this;
1097
+ once<E extends keyof ServerHttp2SessionEventMap>(
1098
+ eventName: E,
1099
+ listener: (
1100
+ ...args: ServerHttp2SessionEventMap<Http1Request, Http1Response, Http2Request, Http2Response>[E]
1101
+ ) => void,
1102
+ ): this;
1103
+ once(eventName: string | symbol, listener: (...args: any[]) => void): this;
1104
+ prependListener<E extends keyof ServerHttp2SessionEventMap>(
1105
+ eventName: E,
1106
+ listener: (
1107
+ ...args: ServerHttp2SessionEventMap<Http1Request, Http1Response, Http2Request, Http2Response>[E]
1108
+ ) => void,
1109
+ ): this;
1110
+ prependListener(eventName: string | symbol, listener: (...args: any[]) => void): this;
1111
+ prependOnceListener<E extends keyof ServerHttp2SessionEventMap>(
1112
+ eventName: E,
1113
+ listener: (
1114
+ ...args: ServerHttp2SessionEventMap<Http1Request, Http1Response, Http2Request, Http2Response>[E]
1115
+ ) => void,
1116
+ ): this;
1117
+ prependOnceListener(eventName: string | symbol, listener: (...args: any[]) => void): this;
1118
+ rawListeners<E extends keyof ServerHttp2SessionEventMap>(
1119
+ eventName: E,
1120
+ ): ((
1121
+ ...args: ServerHttp2SessionEventMap<Http1Request, Http1Response, Http2Request, Http2Response>[E]
1122
+ ) => void)[];
1123
+ rawListeners(eventName: string | symbol): ((...args: any[]) => void)[];
1124
+ // eslint-disable-next-line @definitelytyped/no-unnecessary-generics
1125
+ removeAllListeners<E extends keyof ServerHttp2SessionEventMap>(eventName?: E): this;
1126
+ removeAllListeners(eventName?: string | symbol): this;
1127
+ removeListener<E extends keyof ServerHttp2SessionEventMap>(
1128
+ eventName: E,
1129
+ listener: (
1130
+ ...args: ServerHttp2SessionEventMap<Http1Request, Http1Response, Http2Request, Http2Response>[E]
1131
+ ) => void,
1132
+ ): this;
1133
+ removeListener(eventName: string | symbol, listener: (...args: any[]) => void): this;
1134
+ // #endregion
1135
+ }
1136
+ // Http2Server
1137
+ interface SessionOptions {
1138
+ /**
1139
+ * Sets the maximum dynamic table size for deflating header fields.
1140
+ * @default 4Kib
1141
+ */
1142
+ maxDeflateDynamicTableSize?: number | undefined;
1143
+ /**
1144
+ * Sets the maximum number of settings entries per `SETTINGS` frame.
1145
+ * The minimum value allowed is `1`.
1146
+ * @default 32
1147
+ */
1148
+ maxSettings?: number | undefined;
1149
+ /**
1150
+ * Sets the maximum memory that the `Http2Session` is permitted to use.
1151
+ * The value is expressed in terms of number of megabytes, e.g. `1` equal 1 megabyte.
1152
+ * The minimum value allowed is `1`.
1153
+ * This is a credit based limit, existing `Http2Stream`s may cause this limit to be exceeded,
1154
+ * but new `Http2Stream` instances will be rejected while this limit is exceeded.
1155
+ * The current number of `Http2Stream` sessions, the current memory use of the header compression tables,
1156
+ * current data queued to be sent, and unacknowledged `PING` and `SETTINGS` frames are all counted towards the current limit.
1157
+ * @default 10
1158
+ */
1159
+ maxSessionMemory?: number | undefined;
1160
+ /**
1161
+ * Sets the maximum number of header entries.
1162
+ * This is similar to `server.maxHeadersCount` or `request.maxHeadersCount` in the `node:http` module.
1163
+ * The minimum value is `1`.
1164
+ * @default 128
1165
+ */
1166
+ maxHeaderListPairs?: number | undefined;
1167
+ /**
1168
+ * Sets the maximum number of outstanding, unacknowledged pings.
1169
+ * @default 10
1170
+ */
1171
+ maxOutstandingPings?: number | undefined;
1172
+ /**
1173
+ * Sets the maximum allowed size for a serialized, compressed block of headers.
1174
+ * Attempts to send headers that exceed this limit will result in
1175
+ * a `'frameError'` event being emitted and the stream being closed and destroyed.
1176
+ */
1177
+ maxSendHeaderBlockLength?: number | undefined;
1178
+ /**
1179
+ * Strategy used for determining the amount of padding to use for `HEADERS` and `DATA` frames.
1180
+ * @default http2.constants.PADDING_STRATEGY_NONE
1181
+ */
1182
+ paddingStrategy?: number | undefined;
1183
+ /**
1184
+ * Sets the maximum number of concurrent streams for the remote peer as if a `SETTINGS` frame had been received.
1185
+ * Will be overridden if the remote peer sets its own value for `maxConcurrentStreams`.
1186
+ * @default 100
1187
+ */
1188
+ peerMaxConcurrentStreams?: number | undefined;
1189
+ /**
1190
+ * The initial settings to send to the remote peer upon connection.
1191
+ */
1192
+ settings?: Settings | undefined;
1193
+ /**
1194
+ * The array of integer values determines the settings types,
1195
+ * which are included in the `CustomSettings`-property of the received remoteSettings.
1196
+ * Please see the `CustomSettings`-property of the `Http2Settings` object for more information, on the allowed setting types.
1197
+ */
1198
+ remoteCustomSettings?: number[] | undefined;
1199
+ /**
1200
+ * Specifies a timeout in milliseconds that
1201
+ * a server should wait when an [`'unknownProtocol'`][] is emitted. If the
1202
+ * socket has not been destroyed by that time the server will destroy it.
1203
+ * @default 100000
1204
+ */
1205
+ unknownProtocolTimeout?: number | undefined;
1206
+ /**
1207
+ * If `true`, it turns on strict leading
1208
+ * and trailing whitespace validation for HTTP/2 header field names and values
1209
+ * as per [RFC-9113](https://www.rfc-editor.org/rfc/rfc9113.html#section-8.2.1).
1210
+ * @since v24.2.0
1211
+ * @default true
1212
+ */
1213
+ strictFieldWhitespaceValidation?: boolean | undefined;
1214
+ }
1215
+ interface ClientSessionOptions extends SessionOptions {
1216
+ /**
1217
+ * Sets the maximum number of reserved push streams the client will accept at any given time.
1218
+ * Once the current number of currently reserved push streams exceeds reaches this limit,
1219
+ * new push streams sent by the server will be automatically rejected.
1220
+ * The minimum allowed value is 0. The maximum allowed value is 2<sup>32</sup>-1.
1221
+ * A negative value sets this option to the maximum allowed value.
1222
+ * @default 200
1223
+ */
1224
+ maxReservedRemoteStreams?: number | undefined;
1225
+ /**
1226
+ * An optional callback that receives the `URL` instance passed to `connect` and the `options` object,
1227
+ * and returns any `Duplex` stream that is to be used as the connection for this session.
1228
+ */
1229
+ createConnection?: ((authority: url.URL, option: SessionOptions) => stream.Duplex) | undefined;
1230
+ /**
1231
+ * The protocol to connect with, if not set in the `authority`.
1232
+ * Value may be either `'http:'` or `'https:'`.
1233
+ * @default 'https:'
1234
+ */
1235
+ protocol?: "http:" | "https:" | undefined;
1236
+ }
1237
+ interface ServerSessionOptions<
1238
+ Http1Request extends typeof IncomingMessage = typeof IncomingMessage,
1239
+ Http1Response extends typeof ServerResponse<InstanceType<Http1Request>> = typeof ServerResponse,
1240
+ Http2Request extends typeof Http2ServerRequest = typeof Http2ServerRequest,
1241
+ Http2Response extends typeof Http2ServerResponse<InstanceType<Http2Request>> = typeof Http2ServerResponse,
1242
+ > extends SessionOptions {
1243
+ streamResetBurst?: number | undefined;
1244
+ streamResetRate?: number | undefined;
1245
+ /** @deprecated Use `http1Options.IncomingMessage` instead. */
1246
+ Http1IncomingMessage?: Http1Request | undefined;
1247
+ /** @deprecated Use `http1Options.ServerResponse` instead. */
1248
+ Http1ServerResponse?: Http1Response | undefined;
1249
+ http1Options?: Http1Options<Http1Request, Http1Response> | undefined;
1250
+ Http2ServerRequest?: Http2Request | undefined;
1251
+ Http2ServerResponse?: Http2Response | undefined;
1252
+ strictSingleValueFields?: boolean | undefined;
1253
+ }
1254
+ interface SecureClientSessionOptions extends ClientSessionOptions, tls.ConnectionOptions {}
1255
+ interface SecureServerSessionOptions<
1256
+ Http1Request extends typeof IncomingMessage = typeof IncomingMessage,
1257
+ Http1Response extends typeof ServerResponse<InstanceType<Http1Request>> = typeof ServerResponse,
1258
+ Http2Request extends typeof Http2ServerRequest = typeof Http2ServerRequest,
1259
+ Http2Response extends typeof Http2ServerResponse<InstanceType<Http2Request>> = typeof Http2ServerResponse,
1260
+ > extends ServerSessionOptions<Http1Request, Http1Response, Http2Request, Http2Response>, tls.TlsOptions {}
1261
+ interface ServerOptions<
1262
+ Http1Request extends typeof IncomingMessage = typeof IncomingMessage,
1263
+ Http1Response extends typeof ServerResponse<InstanceType<Http1Request>> = typeof ServerResponse,
1264
+ Http2Request extends typeof Http2ServerRequest = typeof Http2ServerRequest,
1265
+ Http2Response extends typeof Http2ServerResponse<InstanceType<Http2Request>> = typeof Http2ServerResponse,
1266
+ > extends ServerSessionOptions<Http1Request, Http1Response, Http2Request, Http2Response> {}
1267
+ interface SecureServerOptions<
1268
+ Http1Request extends typeof IncomingMessage = typeof IncomingMessage,
1269
+ Http1Response extends typeof ServerResponse<InstanceType<Http1Request>> = typeof ServerResponse,
1270
+ Http2Request extends typeof Http2ServerRequest = typeof Http2ServerRequest,
1271
+ Http2Response extends typeof Http2ServerResponse<InstanceType<Http2Request>> = typeof Http2ServerResponse,
1272
+ > extends SecureServerSessionOptions<Http1Request, Http1Response, Http2Request, Http2Response> {
1273
+ allowHTTP1?: boolean | undefined;
1274
+ origins?: string[] | undefined;
1275
+ }
1276
+ interface Http1Options<
1277
+ Request extends typeof IncomingMessage,
1278
+ Response extends typeof ServerResponse<InstanceType<Request>>,
1279
+ > {
1280
+ IncomingMessage?: Request | undefined;
1281
+ ServerResponse?: Response | undefined;
1282
+ keepAliveTimeout?: number | undefined;
1283
+ }
1284
+ interface Http2ServerCommon {
1285
+ setTimeout(msec?: number, callback?: () => void): this;
1286
+ /**
1287
+ * Throws ERR_HTTP2_INVALID_SETTING_VALUE for invalid settings values.
1288
+ * Throws ERR_INVALID_ARG_TYPE for invalid settings argument.
1289
+ */
1290
+ updateSettings(settings: Settings): void;
1291
+ }
1292
+ interface Http2ServerEventMap<
1293
+ Http1Request extends typeof IncomingMessage = typeof IncomingMessage,
1294
+ Http1Response extends typeof ServerResponse<InstanceType<Http1Request>> = typeof ServerResponse,
1295
+ Http2Request extends typeof Http2ServerRequest = typeof Http2ServerRequest,
1296
+ Http2Response extends typeof Http2ServerResponse<InstanceType<Http2Request>> = typeof Http2ServerResponse,
1297
+ > extends net.ServerEventMap, Pick<Http2SessionEventMap, "stream" | "timeout"> {
1298
+ "checkContinue": [request: InstanceType<Http2Request>, response: InstanceType<Http2Response>];
1299
+ "request": [request: InstanceType<Http2Request>, response: InstanceType<Http2Response>];
1300
+ "session": [session: ServerHttp2Session<Http1Request, Http1Response, Http2Request, Http2Response>];
1301
+ "sessionError": [
1302
+ err: Error,
1303
+ session: ServerHttp2Session<Http1Request, Http1Response, Http2Request, Http2Response>,
1304
+ ];
1305
+ }
1306
+ interface Http2Server<
1307
+ Http1Request extends typeof IncomingMessage = typeof IncomingMessage,
1308
+ Http1Response extends typeof ServerResponse<InstanceType<Http1Request>> = typeof ServerResponse,
1309
+ Http2Request extends typeof Http2ServerRequest = typeof Http2ServerRequest,
1310
+ Http2Response extends typeof Http2ServerResponse<InstanceType<Http2Request>> = typeof Http2ServerResponse,
1311
+ > extends net.Server, Http2ServerCommon {
1312
+ // #region InternalEventEmitter
1313
+ addListener<E extends keyof Http2ServerEventMap>(
1314
+ eventName: E,
1315
+ listener: (
1316
+ ...args: Http2ServerEventMap<Http1Request, Http1Response, Http2Request, Http2Response>[E]
1317
+ ) => void,
1318
+ ): this;
1319
+ addListener(eventName: string | symbol, listener: (...args: any[]) => void): this;
1320
+ emit<E extends keyof Http2ServerEventMap>(
1321
+ eventName: E,
1322
+ ...args: Http2ServerEventMap<Http1Request, Http1Response, Http2Request, Http2Response>[E]
1323
+ ): boolean;
1324
+ emit(eventName: string | symbol, ...args: any[]): boolean;
1325
+ listenerCount<E extends keyof Http2ServerEventMap>(
1326
+ eventName: E,
1327
+ listener?: (
1328
+ ...args: Http2ServerEventMap<Http1Request, Http1Response, Http2Request, Http2Response>[E]
1329
+ ) => void,
1330
+ ): number;
1331
+ listenerCount(eventName: string | symbol, listener?: (...args: any[]) => void): number;
1332
+ listeners<E extends keyof Http2ServerEventMap>(
1333
+ eventName: E,
1334
+ ): ((...args: Http2ServerEventMap<Http1Request, Http1Response, Http2Request, Http2Response>[E]) => void)[];
1335
+ listeners(eventName: string | symbol): ((...args: any[]) => void)[];
1336
+ off<E extends keyof Http2ServerEventMap>(
1337
+ eventName: E,
1338
+ listener: (
1339
+ ...args: Http2ServerEventMap<Http1Request, Http1Response, Http2Request, Http2Response>[E]
1340
+ ) => void,
1341
+ ): this;
1342
+ off(eventName: string | symbol, listener: (...args: any[]) => void): this;
1343
+ on<E extends keyof Http2ServerEventMap>(
1344
+ eventName: E,
1345
+ listener: (
1346
+ ...args: Http2ServerEventMap<Http1Request, Http1Response, Http2Request, Http2Response>[E]
1347
+ ) => void,
1348
+ ): this;
1349
+ on(eventName: string | symbol, listener: (...args: any[]) => void): this;
1350
+ once<E extends keyof Http2ServerEventMap>(
1351
+ eventName: E,
1352
+ listener: (
1353
+ ...args: Http2ServerEventMap<Http1Request, Http1Response, Http2Request, Http2Response>[E]
1354
+ ) => void,
1355
+ ): this;
1356
+ once(eventName: string | symbol, listener: (...args: any[]) => void): this;
1357
+ prependListener<E extends keyof Http2ServerEventMap>(
1358
+ eventName: E,
1359
+ listener: (
1360
+ ...args: Http2ServerEventMap<Http1Request, Http1Response, Http2Request, Http2Response>[E]
1361
+ ) => void,
1362
+ ): this;
1363
+ prependListener(eventName: string | symbol, listener: (...args: any[]) => void): this;
1364
+ prependOnceListener<E extends keyof Http2ServerEventMap>(
1365
+ eventName: E,
1366
+ listener: (
1367
+ ...args: Http2ServerEventMap<Http1Request, Http1Response, Http2Request, Http2Response>[E]
1368
+ ) => void,
1369
+ ): this;
1370
+ prependOnceListener(eventName: string | symbol, listener: (...args: any[]) => void): this;
1371
+ rawListeners<E extends keyof Http2ServerEventMap>(
1372
+ eventName: E,
1373
+ ): ((...args: Http2ServerEventMap<Http1Request, Http1Response, Http2Request, Http2Response>[E]) => void)[];
1374
+ rawListeners(eventName: string | symbol): ((...args: any[]) => void)[];
1375
+ // eslint-disable-next-line @definitelytyped/no-unnecessary-generics
1376
+ removeAllListeners<E extends keyof Http2ServerEventMap>(eventName?: E): this;
1377
+ removeAllListeners(eventName?: string | symbol): this;
1378
+ removeListener<E extends keyof Http2ServerEventMap>(
1379
+ eventName: E,
1380
+ listener: (
1381
+ ...args: Http2ServerEventMap<Http1Request, Http1Response, Http2Request, Http2Response>[E]
1382
+ ) => void,
1383
+ ): this;
1384
+ removeListener(eventName: string | symbol, listener: (...args: any[]) => void): this;
1385
+ // #endregion
1386
+ }
1387
+ interface Http2SecureServerEventMap<
1388
+ Http1Request extends typeof IncomingMessage = typeof IncomingMessage,
1389
+ Http1Response extends typeof ServerResponse<InstanceType<Http1Request>> = typeof ServerResponse,
1390
+ Http2Request extends typeof Http2ServerRequest = typeof Http2ServerRequest,
1391
+ Http2Response extends typeof Http2ServerResponse<InstanceType<Http2Request>> = typeof Http2ServerResponse,
1392
+ > extends tls.ServerEventMap, Http2ServerEventMap<Http1Request, Http1Response, Http2Request, Http2Response> {
1393
+ "unknownProtocol": [socket: tls.TLSSocket];
1394
+ }
1395
+ interface Http2SecureServer<
1396
+ Http1Request extends typeof IncomingMessage = typeof IncomingMessage,
1397
+ Http1Response extends typeof ServerResponse<InstanceType<Http1Request>> = typeof ServerResponse,
1398
+ Http2Request extends typeof Http2ServerRequest = typeof Http2ServerRequest,
1399
+ Http2Response extends typeof Http2ServerResponse<InstanceType<Http2Request>> = typeof Http2ServerResponse,
1400
+ > extends tls.Server, Http2ServerCommon {
1401
+ // #region InternalEventEmitter
1402
+ addListener<E extends keyof Http2SecureServerEventMap>(
1403
+ eventName: E,
1404
+ listener: (
1405
+ ...args: Http2SecureServerEventMap<Http1Request, Http1Response, Http2Request, Http2Response>[E]
1406
+ ) => void,
1407
+ ): this;
1408
+ addListener(eventName: string | symbol, listener: (...args: any[]) => void): this;
1409
+ emit<E extends keyof Http2SecureServerEventMap>(
1410
+ eventName: E,
1411
+ ...args: Http2SecureServerEventMap<Http1Request, Http1Response, Http2Request, Http2Response>[E]
1412
+ ): boolean;
1413
+ emit(eventName: string | symbol, ...args: any[]): boolean;
1414
+ listenerCount<E extends keyof Http2SecureServerEventMap>(
1415
+ eventName: E,
1416
+ listener?: (
1417
+ ...args: Http2SecureServerEventMap<Http1Request, Http1Response, Http2Request, Http2Response>[E]
1418
+ ) => void,
1419
+ ): number;
1420
+ listenerCount(eventName: string | symbol, listener?: (...args: any[]) => void): number;
1421
+ listeners<E extends keyof Http2SecureServerEventMap>(
1422
+ eventName: E,
1423
+ ): ((
1424
+ ...args: Http2SecureServerEventMap<Http1Request, Http1Response, Http2Request, Http2Response>[E]
1425
+ ) => void)[];
1426
+ listeners(eventName: string | symbol): ((...args: any[]) => void)[];
1427
+ off<E extends keyof Http2SecureServerEventMap>(
1428
+ eventName: E,
1429
+ listener: (
1430
+ ...args: Http2SecureServerEventMap<Http1Request, Http1Response, Http2Request, Http2Response>[E]
1431
+ ) => void,
1432
+ ): this;
1433
+ off(eventName: string | symbol, listener: (...args: any[]) => void): this;
1434
+ on<E extends keyof Http2SecureServerEventMap>(
1435
+ eventName: E,
1436
+ listener: (
1437
+ ...args: Http2SecureServerEventMap<Http1Request, Http1Response, Http2Request, Http2Response>[E]
1438
+ ) => void,
1439
+ ): this;
1440
+ on(eventName: string | symbol, listener: (...args: any[]) => void): this;
1441
+ once<E extends keyof Http2SecureServerEventMap>(
1442
+ eventName: E,
1443
+ listener: (
1444
+ ...args: Http2SecureServerEventMap<Http1Request, Http1Response, Http2Request, Http2Response>[E]
1445
+ ) => void,
1446
+ ): this;
1447
+ once(eventName: string | symbol, listener: (...args: any[]) => void): this;
1448
+ prependListener<E extends keyof Http2SecureServerEventMap>(
1449
+ eventName: E,
1450
+ listener: (
1451
+ ...args: Http2SecureServerEventMap<Http1Request, Http1Response, Http2Request, Http2Response>[E]
1452
+ ) => void,
1453
+ ): this;
1454
+ prependListener(eventName: string | symbol, listener: (...args: any[]) => void): this;
1455
+ prependOnceListener<E extends keyof Http2SecureServerEventMap>(
1456
+ eventName: E,
1457
+ listener: (
1458
+ ...args: Http2SecureServerEventMap<Http1Request, Http1Response, Http2Request, Http2Response>[E]
1459
+ ) => void,
1460
+ ): this;
1461
+ prependOnceListener(eventName: string | symbol, listener: (...args: any[]) => void): this;
1462
+ rawListeners<E extends keyof Http2SecureServerEventMap>(
1463
+ eventName: E,
1464
+ ): ((
1465
+ ...args: Http2SecureServerEventMap<Http1Request, Http1Response, Http2Request, Http2Response>[E]
1466
+ ) => void)[];
1467
+ rawListeners(eventName: string | symbol): ((...args: any[]) => void)[];
1468
+ // eslint-disable-next-line @definitelytyped/no-unnecessary-generics
1469
+ removeAllListeners<E extends keyof Http2SecureServerEventMap>(eventName?: E): this;
1470
+ removeAllListeners(eventName?: string | symbol): this;
1471
+ removeListener<E extends keyof Http2SecureServerEventMap>(
1472
+ eventName: E,
1473
+ listener: (
1474
+ ...args: Http2SecureServerEventMap<Http1Request, Http1Response, Http2Request, Http2Response>[E]
1475
+ ) => void,
1476
+ ): this;
1477
+ removeListener(eventName: string | symbol, listener: (...args: any[]) => void): this;
1478
+ // #endregion
1479
+ }
1480
+ interface Http2ServerRequestEventMap extends stream.ReadableEventMap {
1481
+ "aborted": [hadError: boolean, code: number];
1482
+ "data": [chunk: string | NonSharedBuffer];
1483
+ }
1484
+ /**
1485
+ * A `Http2ServerRequest` object is created by {@link Server} or {@link SecureServer} and passed as the first argument to the `'request'` event. It may be used to access a request status,
1486
+ * headers, and
1487
+ * data.
1488
+ * @since v8.4.0
1489
+ */
1490
+ class Http2ServerRequest extends stream.Readable {
1491
+ constructor(
1492
+ stream: ServerHttp2Stream,
1493
+ headers: IncomingHttpHeaders,
1494
+ options: stream.ReadableOptions,
1495
+ rawHeaders: readonly string[],
1496
+ );
1497
+ /**
1498
+ * The `request.aborted` property will be `true` if the request has
1499
+ * been aborted.
1500
+ * @since v10.1.0
1501
+ */
1502
+ readonly aborted: boolean;
1503
+ /**
1504
+ * The request authority pseudo header field. Because HTTP/2 allows requests
1505
+ * to set either `:authority` or `host`, this value is derived from `req.headers[':authority']` if present. Otherwise, it is derived from `req.headers['host']`.
1506
+ * @since v8.4.0
1507
+ */
1508
+ readonly authority: string;
1509
+ /**
1510
+ * See `request.socket`.
1511
+ * @since v8.4.0
1512
+ * @deprecated Since v13.0.0 - Use `socket`.
1513
+ */
1514
+ readonly connection: net.Socket | tls.TLSSocket;
1515
+ /**
1516
+ * The `request.complete` property will be `true` if the request has
1517
+ * been completed, aborted, or destroyed.
1518
+ * @since v12.10.0
1519
+ */
1520
+ readonly complete: boolean;
1521
+ /**
1522
+ * The request/response headers object.
1523
+ *
1524
+ * Key-value pairs of header names and values. Header names are lower-cased.
1525
+ *
1526
+ * ```js
1527
+ * // Prints something like:
1528
+ * //
1529
+ * // { 'user-agent': 'curl/7.22.0',
1530
+ * // host: '127.0.0.1:8000',
1531
+ * // accept: '*' }
1532
+ * console.log(request.headers);
1533
+ * ```
1534
+ *
1535
+ * See `HTTP/2 Headers Object`.
1536
+ *
1537
+ * In HTTP/2, the request path, host name, protocol, and method are represented as
1538
+ * special headers prefixed with the `:` character (e.g. `':path'`). These special
1539
+ * headers will be included in the `request.headers` object. Care must be taken not
1540
+ * to inadvertently modify these special headers or errors may occur. For instance,
1541
+ * removing all headers from the request will cause errors to occur:
1542
+ *
1543
+ * ```js
1544
+ * removeAllHeaders(request.headers);
1545
+ * assert(request.url); // Fails because the :path header has been removed
1546
+ * ```
1547
+ * @since v8.4.0
1548
+ */
1549
+ readonly headers: IncomingHttpHeaders;
1550
+ /**
1551
+ * In case of server request, the HTTP version sent by the client. In the case of
1552
+ * client response, the HTTP version of the connected-to server. Returns `'2.0'`.
1553
+ *
1554
+ * Also `message.httpVersionMajor` is the first integer and `message.httpVersionMinor` is the second.
1555
+ * @since v8.4.0
1556
+ */
1557
+ readonly httpVersion: string;
1558
+ readonly httpVersionMinor: number;
1559
+ readonly httpVersionMajor: number;
1560
+ /**
1561
+ * The request method as a string. Read-only. Examples: `'GET'`, `'DELETE'`.
1562
+ * @since v8.4.0
1563
+ */
1564
+ readonly method: string;
1565
+ /**
1566
+ * The raw request/response headers list exactly as they were received.
1567
+ *
1568
+ * The keys and values are in the same list. It is _not_ a
1569
+ * list of tuples. So, the even-numbered offsets are key values, and the
1570
+ * odd-numbered offsets are the associated values.
1571
+ *
1572
+ * Header names are not lowercased, and duplicates are not merged.
1573
+ *
1574
+ * ```js
1575
+ * // Prints something like:
1576
+ * //
1577
+ * // [ 'user-agent',
1578
+ * // 'this is invalid because there can be only one',
1579
+ * // 'User-Agent',
1580
+ * // 'curl/7.22.0',
1581
+ * // 'Host',
1582
+ * // '127.0.0.1:8000',
1583
+ * // 'ACCEPT',
1584
+ * // '*' ]
1585
+ * console.log(request.rawHeaders);
1586
+ * ```
1587
+ * @since v8.4.0
1588
+ */
1589
+ readonly rawHeaders: string[];
1590
+ /**
1591
+ * The raw request/response trailer keys and values exactly as they were
1592
+ * received. Only populated at the `'end'` event.
1593
+ * @since v8.4.0
1594
+ */
1595
+ readonly rawTrailers: string[];
1596
+ /**
1597
+ * The request scheme pseudo header field indicating the scheme
1598
+ * portion of the target URL.
1599
+ * @since v8.4.0
1600
+ */
1601
+ readonly scheme: string;
1602
+ /**
1603
+ * Returns a `Proxy` object that acts as a `net.Socket` (or `tls.TLSSocket`) but
1604
+ * applies getters, setters, and methods based on HTTP/2 logic.
1605
+ *
1606
+ * `destroyed`, `readable`, and `writable` properties will be retrieved from and
1607
+ * set on `request.stream`.
1608
+ *
1609
+ * `destroy`, `emit`, `end`, `on` and `once` methods will be called on `request.stream`.
1610
+ *
1611
+ * `setTimeout` method will be called on `request.stream.session`.
1612
+ *
1613
+ * `pause`, `read`, `resume`, and `write` will throw an error with code `ERR_HTTP2_NO_SOCKET_MANIPULATION`. See `Http2Session and Sockets` for
1614
+ * more information.
1615
+ *
1616
+ * All other interactions will be routed directly to the socket. With TLS support,
1617
+ * use `request.socket.getPeerCertificate()` to obtain the client's
1618
+ * authentication details.
1619
+ * @since v8.4.0
1620
+ */
1621
+ readonly socket: net.Socket | tls.TLSSocket;
1622
+ /**
1623
+ * The `Http2Stream` object backing the request.
1624
+ * @since v8.4.0
1625
+ */
1626
+ readonly stream: ServerHttp2Stream;
1627
+ /**
1628
+ * The request/response trailers object. Only populated at the `'end'` event.
1629
+ * @since v8.4.0
1630
+ */
1631
+ readonly trailers: IncomingHttpHeaders;
1632
+ /**
1633
+ * Request URL string. This contains only the URL that is present in the actual
1634
+ * HTTP request. If the request is:
1635
+ *
1636
+ * ```http
1637
+ * GET /status?name=ryan HTTP/1.1
1638
+ * Accept: text/plain
1639
+ * ```
1640
+ *
1641
+ * Then `request.url` will be:
1642
+ *
1643
+ * ```js
1644
+ * '/status?name=ryan'
1645
+ * ```
1646
+ *
1647
+ * To parse the url into its parts, `new URL()` can be used:
1648
+ *
1649
+ * ```console
1650
+ * $ node
1651
+ * > new URL('/status?name=ryan', 'http://example.com')
1652
+ * URL {
1653
+ * href: 'http://example.com/status?name=ryan',
1654
+ * origin: 'http://example.com',
1655
+ * protocol: 'http:',
1656
+ * username: '',
1657
+ * password: '',
1658
+ * host: 'example.com',
1659
+ * hostname: 'example.com',
1660
+ * port: '',
1661
+ * pathname: '/status',
1662
+ * search: '?name=ryan',
1663
+ * searchParams: URLSearchParams { 'name' => 'ryan' },
1664
+ * hash: ''
1665
+ * }
1666
+ * ```
1667
+ * @since v8.4.0
1668
+ */
1669
+ url: string;
1670
+ /**
1671
+ * Sets the `Http2Stream`'s timeout value to `msecs`. If a callback is
1672
+ * provided, then it is added as a listener on the `'timeout'` event on
1673
+ * the response object.
1674
+ *
1675
+ * If no `'timeout'` listener is added to the request, the response, or
1676
+ * the server, then `Http2Stream`s are destroyed when they time out. If a
1677
+ * handler is assigned to the request, the response, or the server's `'timeout'`events, timed out sockets must be handled explicitly.
1678
+ * @since v8.4.0
1679
+ */
1680
+ setTimeout(msecs: number, callback?: () => void): void;
1681
+ read(size?: number): Buffer | string | null;
1682
+ // #region InternalEventEmitter
1683
+ addListener<E extends keyof Http2ServerRequestEventMap>(
1684
+ eventName: E,
1685
+ listener: (...args: Http2ServerRequestEventMap[E]) => void,
1686
+ ): this;
1687
+ addListener(eventName: string | symbol, listener: (...args: any[]) => void): this;
1688
+ emit<E extends keyof Http2ServerRequestEventMap>(eventName: E, ...args: Http2ServerRequestEventMap[E]): boolean;
1689
+ emit(eventName: string | symbol, ...args: any[]): boolean;
1690
+ listenerCount<E extends keyof Http2ServerRequestEventMap>(
1691
+ eventName: E,
1692
+ listener?: (...args: Http2ServerRequestEventMap[E]) => void,
1693
+ ): number;
1694
+ listenerCount(eventName: string | symbol, listener?: (...args: any[]) => void): number;
1695
+ listeners<E extends keyof Http2ServerRequestEventMap>(
1696
+ eventName: E,
1697
+ ): ((...args: Http2ServerRequestEventMap[E]) => void)[];
1698
+ listeners(eventName: string | symbol): ((...args: any[]) => void)[];
1699
+ off<E extends keyof Http2ServerRequestEventMap>(
1700
+ eventName: E,
1701
+ listener: (...args: Http2ServerRequestEventMap[E]) => void,
1702
+ ): this;
1703
+ off(eventName: string | symbol, listener: (...args: any[]) => void): this;
1704
+ on<E extends keyof Http2ServerRequestEventMap>(
1705
+ eventName: E,
1706
+ listener: (...args: Http2ServerRequestEventMap[E]) => void,
1707
+ ): this;
1708
+ on(eventName: string | symbol, listener: (...args: any[]) => void): this;
1709
+ once<E extends keyof Http2ServerRequestEventMap>(
1710
+ eventName: E,
1711
+ listener: (...args: Http2ServerRequestEventMap[E]) => void,
1712
+ ): this;
1713
+ once(eventName: string | symbol, listener: (...args: any[]) => void): this;
1714
+ prependListener<E extends keyof Http2ServerRequestEventMap>(
1715
+ eventName: E,
1716
+ listener: (...args: Http2ServerRequestEventMap[E]) => void,
1717
+ ): this;
1718
+ prependListener(eventName: string | symbol, listener: (...args: any[]) => void): this;
1719
+ prependOnceListener<E extends keyof Http2ServerRequestEventMap>(
1720
+ eventName: E,
1721
+ listener: (...args: Http2ServerRequestEventMap[E]) => void,
1722
+ ): this;
1723
+ prependOnceListener(eventName: string | symbol, listener: (...args: any[]) => void): this;
1724
+ rawListeners<E extends keyof Http2ServerRequestEventMap>(
1725
+ eventName: E,
1726
+ ): ((...args: Http2ServerRequestEventMap[E]) => void)[];
1727
+ rawListeners(eventName: string | symbol): ((...args: any[]) => void)[];
1728
+ // eslint-disable-next-line @definitelytyped/no-unnecessary-generics
1729
+ removeAllListeners<E extends keyof Http2ServerRequestEventMap>(eventName?: E): this;
1730
+ removeAllListeners(eventName?: string | symbol): this;
1731
+ removeListener<E extends keyof Http2ServerRequestEventMap>(
1732
+ eventName: E,
1733
+ listener: (...args: Http2ServerRequestEventMap[E]) => void,
1734
+ ): this;
1735
+ removeListener(eventName: string | symbol, listener: (...args: any[]) => void): this;
1736
+ // #endregion
1737
+ }
1738
+ /**
1739
+ * This object is created internally by an HTTP server, not by the user. It is
1740
+ * passed as the second parameter to the `'request'` event.
1741
+ * @since v8.4.0
1742
+ */
1743
+ class Http2ServerResponse<Request extends Http2ServerRequest = Http2ServerRequest> extends stream.Writable {
1744
+ constructor(stream: ServerHttp2Stream);
1745
+ /**
1746
+ * See `response.socket`.
1747
+ * @since v8.4.0
1748
+ * @deprecated Since v13.0.0 - Use `socket`.
1749
+ */
1750
+ readonly connection: net.Socket | tls.TLSSocket;
1751
+ /**
1752
+ * Append a single header value to the header object.
1753
+ *
1754
+ * If the value is an array, this is equivalent to calling this method multiple times.
1755
+ *
1756
+ * If there were no previous values for the header, this is equivalent to calling {@link setHeader}.
1757
+ *
1758
+ * Attempting to set a header field name or value that contains invalid characters will result in a
1759
+ * [TypeError](https://nodejs.org/docs/latest-v25.x/api/errors.html#class-typeerror) being thrown.
1760
+ *
1761
+ * ```js
1762
+ * // Returns headers including "set-cookie: a" and "set-cookie: b"
1763
+ * const server = http2.createServer((req, res) => {
1764
+ * res.setHeader('set-cookie', 'a');
1765
+ * res.appendHeader('set-cookie', 'b');
1766
+ * res.writeHead(200);
1767
+ * res.end('ok');
1768
+ * });
1769
+ * ```
1770
+ * @since v20.12.0
1771
+ */
1772
+ appendHeader(name: string, value: string | string[]): void;
1773
+ /**
1774
+ * Boolean value that indicates whether the response has completed. Starts
1775
+ * as `false`. After `response.end()` executes, the value will be `true`.
1776
+ * @since v8.4.0
1777
+ * @deprecated Since v13.4.0,v12.16.0 - Use `writableEnded`.
1778
+ */
1779
+ readonly finished: boolean;
1780
+ /**
1781
+ * True if headers were sent, false otherwise (read-only).
1782
+ * @since v8.4.0
1783
+ */
1784
+ readonly headersSent: boolean;
1785
+ /**
1786
+ * A reference to the original HTTP2 `request` object.
1787
+ * @since v15.7.0
1788
+ */
1789
+ readonly req: Request;
1790
+ /**
1791
+ * Returns a `Proxy` object that acts as a `net.Socket` (or `tls.TLSSocket`) but
1792
+ * applies getters, setters, and methods based on HTTP/2 logic.
1793
+ *
1794
+ * `destroyed`, `readable`, and `writable` properties will be retrieved from and
1795
+ * set on `response.stream`.
1796
+ *
1797
+ * `destroy`, `emit`, `end`, `on` and `once` methods will be called on `response.stream`.
1798
+ *
1799
+ * `setTimeout` method will be called on `response.stream.session`.
1800
+ *
1801
+ * `pause`, `read`, `resume`, and `write` will throw an error with code `ERR_HTTP2_NO_SOCKET_MANIPULATION`. See `Http2Session and Sockets` for
1802
+ * more information.
1803
+ *
1804
+ * All other interactions will be routed directly to the socket.
1805
+ *
1806
+ * ```js
1807
+ * import http2 from 'node:http2';
1808
+ * const server = http2.createServer((req, res) => {
1809
+ * const ip = req.socket.remoteAddress;
1810
+ * const port = req.socket.remotePort;
1811
+ * res.end(`Your IP address is ${ip} and your source port is ${port}.`);
1812
+ * }).listen(3000);
1813
+ * ```
1814
+ * @since v8.4.0
1815
+ */
1816
+ readonly socket: net.Socket | tls.TLSSocket;
1817
+ /**
1818
+ * The `Http2Stream` object backing the response.
1819
+ * @since v8.4.0
1820
+ */
1821
+ readonly stream: ServerHttp2Stream;
1822
+ /**
1823
+ * When true, the Date header will be automatically generated and sent in
1824
+ * the response if it is not already present in the headers. Defaults to true.
1825
+ *
1826
+ * This should only be disabled for testing; HTTP requires the Date header
1827
+ * in responses.
1828
+ * @since v8.4.0
1829
+ */
1830
+ sendDate: boolean;
1831
+ /**
1832
+ * When using implicit headers (not calling `response.writeHead()` explicitly),
1833
+ * this property controls the status code that will be sent to the client when
1834
+ * the headers get flushed.
1835
+ *
1836
+ * ```js
1837
+ * response.statusCode = 404;
1838
+ * ```
1839
+ *
1840
+ * After response header was sent to the client, this property indicates the
1841
+ * status code which was sent out.
1842
+ * @since v8.4.0
1843
+ */
1844
+ statusCode: number;
1845
+ /**
1846
+ * Status message is not supported by HTTP/2 (RFC 7540 8.1.2.4). It returns
1847
+ * an empty string.
1848
+ * @since v8.4.0
1849
+ */
1850
+ statusMessage: "";
1851
+ /**
1852
+ * This method adds HTTP trailing headers (a header but at the end of the
1853
+ * message) to the response.
1854
+ *
1855
+ * Attempting to set a header field name or value that contains invalid characters
1856
+ * will result in a `TypeError` being thrown.
1857
+ * @since v8.4.0
1858
+ */
1859
+ addTrailers(trailers: OutgoingHttpHeaders): void;
1860
+ /**
1861
+ * This method signals to the server that all of the response headers and body
1862
+ * have been sent; that server should consider this message complete.
1863
+ * The method, `response.end()`, MUST be called on each response.
1864
+ *
1865
+ * If `data` is specified, it is equivalent to calling `response.write(data, encoding)` followed by `response.end(callback)`.
1866
+ *
1867
+ * If `callback` is specified, it will be called when the response stream
1868
+ * is finished.
1869
+ * @since v8.4.0
1870
+ */
1871
+ end(callback?: () => void): this;
1872
+ end(data: string | Uint8Array, callback?: () => void): this;
1873
+ end(data: string | Uint8Array, encoding: BufferEncoding, callback?: () => void): this;
1874
+ /**
1875
+ * Reads out a header that has already been queued but not sent to the client.
1876
+ * The name is case-insensitive.
1877
+ *
1878
+ * ```js
1879
+ * const contentType = response.getHeader('content-type');
1880
+ * ```
1881
+ * @since v8.4.0
1882
+ */
1883
+ getHeader(name: string): string;
1884
+ /**
1885
+ * Returns an array containing the unique names of the current outgoing headers.
1886
+ * All header names are lowercase.
1887
+ *
1888
+ * ```js
1889
+ * response.setHeader('Foo', 'bar');
1890
+ * response.setHeader('Set-Cookie', ['foo=bar', 'bar=baz']);
1891
+ *
1892
+ * const headerNames = response.getHeaderNames();
1893
+ * // headerNames === ['foo', 'set-cookie']
1894
+ * ```
1895
+ * @since v8.4.0
1896
+ */
1897
+ getHeaderNames(): string[];
1898
+ /**
1899
+ * Returns a shallow copy of the current outgoing headers. Since a shallow copy
1900
+ * is used, array values may be mutated without additional calls to various
1901
+ * header-related http module methods. The keys of the returned object are the
1902
+ * header names and the values are the respective header values. All header names
1903
+ * are lowercase.
1904
+ *
1905
+ * The object returned by the `response.getHeaders()` method _does not_ prototypically inherit from the JavaScript `Object`. This means that typical `Object` methods such as `obj.toString()`,
1906
+ * `obj.hasOwnProperty()`, and others
1907
+ * are not defined and _will not work_.
1908
+ *
1909
+ * ```js
1910
+ * response.setHeader('Foo', 'bar');
1911
+ * response.setHeader('Set-Cookie', ['foo=bar', 'bar=baz']);
1912
+ *
1913
+ * const headers = response.getHeaders();
1914
+ * // headers === { foo: 'bar', 'set-cookie': ['foo=bar', 'bar=baz'] }
1915
+ * ```
1916
+ * @since v8.4.0
1917
+ */
1918
+ getHeaders(): OutgoingHttpHeaders;
1919
+ /**
1920
+ * Returns `true` if the header identified by `name` is currently set in the
1921
+ * outgoing headers. The header name matching is case-insensitive.
1922
+ *
1923
+ * ```js
1924
+ * const hasContentType = response.hasHeader('content-type');
1925
+ * ```
1926
+ * @since v8.4.0
1927
+ */
1928
+ hasHeader(name: string): boolean;
1929
+ /**
1930
+ * Removes a header that has been queued for implicit sending.
1931
+ *
1932
+ * ```js
1933
+ * response.removeHeader('Content-Encoding');
1934
+ * ```
1935
+ * @since v8.4.0
1936
+ */
1937
+ removeHeader(name: string): void;
1938
+ /**
1939
+ * Sets a single header value for implicit headers. If this header already exists
1940
+ * in the to-be-sent headers, its value will be replaced. Use an array of strings
1941
+ * here to send multiple headers with the same name.
1942
+ *
1943
+ * ```js
1944
+ * response.setHeader('Content-Type', 'text/html; charset=utf-8');
1945
+ * ```
1946
+ *
1947
+ * or
1948
+ *
1949
+ * ```js
1950
+ * response.setHeader('Set-Cookie', ['type=ninja', 'language=javascript']);
1951
+ * ```
1952
+ *
1953
+ * Attempting to set a header field name or value that contains invalid characters
1954
+ * will result in a `TypeError` being thrown.
1955
+ *
1956
+ * When headers have been set with `response.setHeader()`, they will be merged
1957
+ * with any headers passed to `response.writeHead()`, with the headers passed
1958
+ * to `response.writeHead()` given precedence.
1959
+ *
1960
+ * ```js
1961
+ * // Returns content-type = text/plain
1962
+ * const server = http2.createServer((req, res) => {
1963
+ * res.setHeader('Content-Type', 'text/html; charset=utf-8');
1964
+ * res.setHeader('X-Foo', 'bar');
1965
+ * res.writeHead(200, { 'Content-Type': 'text/plain; charset=utf-8' });
1966
+ * res.end('ok');
1967
+ * });
1968
+ * ```
1969
+ * @since v8.4.0
1970
+ */
1971
+ setHeader(name: string, value: number | string | readonly string[]): void;
1972
+ /**
1973
+ * Sets the `Http2Stream`'s timeout value to `msecs`. If a callback is
1974
+ * provided, then it is added as a listener on the `'timeout'` event on
1975
+ * the response object.
1976
+ *
1977
+ * If no `'timeout'` listener is added to the request, the response, or
1978
+ * the server, then `Http2Stream` s are destroyed when they time out. If a
1979
+ * handler is assigned to the request, the response, or the server's `'timeout'` events, timed out sockets must be handled explicitly.
1980
+ * @since v8.4.0
1981
+ */
1982
+ setTimeout(msecs: number, callback?: () => void): void;
1983
+ /**
1984
+ * If this method is called and `response.writeHead()` has not been called,
1985
+ * it will switch to implicit header mode and flush the implicit headers.
1986
+ *
1987
+ * This sends a chunk of the response body. This method may
1988
+ * be called multiple times to provide successive parts of the body.
1989
+ *
1990
+ * In the `node:http` module, the response body is omitted when the
1991
+ * request is a HEAD request. Similarly, the `204` and `304` responses _must not_ include a message body.
1992
+ *
1993
+ * `chunk` can be a string or a buffer. If `chunk` is a string,
1994
+ * the second parameter specifies how to encode it into a byte stream.
1995
+ * By default the `encoding` is `'utf8'`. `callback` will be called when this chunk
1996
+ * of data is flushed.
1997
+ *
1998
+ * This is the raw HTTP body and has nothing to do with higher-level multi-part
1999
+ * body encodings that may be used.
2000
+ *
2001
+ * The first time `response.write()` is called, it will send the buffered
2002
+ * header information and the first chunk of the body to the client. The second
2003
+ * time `response.write()` is called, Node.js assumes data will be streamed,
2004
+ * and sends the new data separately. That is, the response is buffered up to the
2005
+ * first chunk of the body.
2006
+ *
2007
+ * Returns `true` if the entire data was flushed successfully to the kernel
2008
+ * buffer. Returns `false` if all or part of the data was queued in user memory.`'drain'` will be emitted when the buffer is free again.
2009
+ * @since v8.4.0
2010
+ */
2011
+ write(chunk: string | Uint8Array, callback?: (err: Error) => void): boolean;
2012
+ write(chunk: string | Uint8Array, encoding: BufferEncoding, callback?: (err: Error) => void): boolean;
2013
+ /**
2014
+ * Sends a status `100 Continue` to the client, indicating that the request body
2015
+ * should be sent. See the `'checkContinue'` event on `Http2Server` and `Http2SecureServer`.
2016
+ * @since v8.4.0
2017
+ */
2018
+ writeContinue(): void;
2019
+ /**
2020
+ * Sends a status `103 Early Hints` to the client with a Link header,
2021
+ * indicating that the user agent can preload/preconnect the linked resources.
2022
+ * The `hints` is an object containing the values of headers to be sent with
2023
+ * early hints message.
2024
+ *
2025
+ * **Example**
2026
+ *
2027
+ * ```js
2028
+ * const earlyHintsLink = '</styles.css>; rel=preload; as=style';
2029
+ * response.writeEarlyHints({
2030
+ * 'link': earlyHintsLink,
2031
+ * });
2032
+ *
2033
+ * const earlyHintsLinks = [
2034
+ * '</styles.css>; rel=preload; as=style',
2035
+ * '</scripts.js>; rel=preload; as=script',
2036
+ * ];
2037
+ * response.writeEarlyHints({
2038
+ * 'link': earlyHintsLinks,
2039
+ * });
2040
+ * ```
2041
+ * @since v18.11.0
2042
+ */
2043
+ writeEarlyHints(hints: Record<string, string | string[]>): void;
2044
+ /**
2045
+ * Sends a response header to the request. The status code is a 3-digit HTTP
2046
+ * status code, like `404`. The last argument, `headers`, are the response headers.
2047
+ *
2048
+ * Returns a reference to the `Http2ServerResponse`, so that calls can be chained.
2049
+ *
2050
+ * For compatibility with `HTTP/1`, a human-readable `statusMessage` may be
2051
+ * passed as the second argument. However, because the `statusMessage` has no
2052
+ * meaning within HTTP/2, the argument will have no effect and a process warning
2053
+ * will be emitted.
2054
+ *
2055
+ * ```js
2056
+ * const body = 'hello world';
2057
+ * response.writeHead(200, {
2058
+ * 'Content-Length': Buffer.byteLength(body),
2059
+ * 'Content-Type': 'text/plain; charset=utf-8',
2060
+ * });
2061
+ * ```
2062
+ *
2063
+ * `Content-Length` is given in bytes not characters. The`Buffer.byteLength()` API may be used to determine the number of bytes in a
2064
+ * given encoding. On outbound messages, Node.js does not check if Content-Length
2065
+ * and the length of the body being transmitted are equal or not. However, when
2066
+ * receiving messages, Node.js will automatically reject messages when the `Content-Length` does not match the actual payload size.
2067
+ *
2068
+ * This method may be called at most one time on a message before `response.end()` is called.
2069
+ *
2070
+ * If `response.write()` or `response.end()` are called before calling
2071
+ * this, the implicit/mutable headers will be calculated and call this function.
2072
+ *
2073
+ * When headers have been set with `response.setHeader()`, they will be merged
2074
+ * with any headers passed to `response.writeHead()`, with the headers passed
2075
+ * to `response.writeHead()` given precedence.
2076
+ *
2077
+ * ```js
2078
+ * // Returns content-type = text/plain
2079
+ * const server = http2.createServer((req, res) => {
2080
+ * res.setHeader('Content-Type', 'text/html; charset=utf-8');
2081
+ * res.setHeader('X-Foo', 'bar');
2082
+ * res.writeHead(200, { 'Content-Type': 'text/plain; charset=utf-8' });
2083
+ * res.end('ok');
2084
+ * });
2085
+ * ```
2086
+ *
2087
+ * Attempting to set a header field name or value that contains invalid characters
2088
+ * will result in a `TypeError` being thrown.
2089
+ * @since v8.4.0
2090
+ */
2091
+ writeHead(statusCode: number, headers?: OutgoingHttpHeaders | readonly string[]): this;
2092
+ writeHead(statusCode: number, statusMessage: string, headers?: OutgoingHttpHeaders | readonly string[]): this;
2093
+ /**
2094
+ * Call `http2stream.pushStream()` with the given headers, and wrap the
2095
+ * given `Http2Stream` on a newly created `Http2ServerResponse` as the callback
2096
+ * parameter if successful. When `Http2ServerRequest` is closed, the callback is
2097
+ * called with an error `ERR_HTTP2_INVALID_STREAM`.
2098
+ * @since v8.4.0
2099
+ * @param headers An object describing the headers
2100
+ * @param callback Called once `http2stream.pushStream()` is finished, or either when the attempt to create the pushed `Http2Stream` has failed or has been rejected, or the state of
2101
+ * `Http2ServerRequest` is closed prior to calling the `http2stream.pushStream()` method
2102
+ */
2103
+ createPushResponse(
2104
+ headers: OutgoingHttpHeaders,
2105
+ callback: (err: Error | null, res: Http2ServerResponse) => void,
2106
+ ): void;
2107
+ }
2108
+ namespace constants {
2109
+ const NGHTTP2_SESSION_SERVER: number;
2110
+ const NGHTTP2_SESSION_CLIENT: number;
2111
+ const NGHTTP2_STREAM_STATE_IDLE: number;
2112
+ const NGHTTP2_STREAM_STATE_OPEN: number;
2113
+ const NGHTTP2_STREAM_STATE_RESERVED_LOCAL: number;
2114
+ const NGHTTP2_STREAM_STATE_RESERVED_REMOTE: number;
2115
+ const NGHTTP2_STREAM_STATE_HALF_CLOSED_LOCAL: number;
2116
+ const NGHTTP2_STREAM_STATE_HALF_CLOSED_REMOTE: number;
2117
+ const NGHTTP2_STREAM_STATE_CLOSED: number;
2118
+ const NGHTTP2_NO_ERROR: number;
2119
+ const NGHTTP2_PROTOCOL_ERROR: number;
2120
+ const NGHTTP2_INTERNAL_ERROR: number;
2121
+ const NGHTTP2_FLOW_CONTROL_ERROR: number;
2122
+ const NGHTTP2_SETTINGS_TIMEOUT: number;
2123
+ const NGHTTP2_STREAM_CLOSED: number;
2124
+ const NGHTTP2_FRAME_SIZE_ERROR: number;
2125
+ const NGHTTP2_REFUSED_STREAM: number;
2126
+ const NGHTTP2_CANCEL: number;
2127
+ const NGHTTP2_COMPRESSION_ERROR: number;
2128
+ const NGHTTP2_CONNECT_ERROR: number;
2129
+ const NGHTTP2_ENHANCE_YOUR_CALM: number;
2130
+ const NGHTTP2_INADEQUATE_SECURITY: number;
2131
+ const NGHTTP2_HTTP_1_1_REQUIRED: number;
2132
+ const NGHTTP2_ERR_FRAME_SIZE_ERROR: number;
2133
+ const NGHTTP2_FLAG_NONE: number;
2134
+ const NGHTTP2_FLAG_END_STREAM: number;
2135
+ const NGHTTP2_FLAG_END_HEADERS: number;
2136
+ const NGHTTP2_FLAG_ACK: number;
2137
+ const NGHTTP2_FLAG_PADDED: number;
2138
+ const NGHTTP2_FLAG_PRIORITY: number;
2139
+ const DEFAULT_SETTINGS_HEADER_TABLE_SIZE: number;
2140
+ const DEFAULT_SETTINGS_ENABLE_PUSH: number;
2141
+ const DEFAULT_SETTINGS_INITIAL_WINDOW_SIZE: number;
2142
+ const DEFAULT_SETTINGS_MAX_FRAME_SIZE: number;
2143
+ const MAX_MAX_FRAME_SIZE: number;
2144
+ const MIN_MAX_FRAME_SIZE: number;
2145
+ const MAX_INITIAL_WINDOW_SIZE: number;
2146
+ const NGHTTP2_DEFAULT_WEIGHT: number;
2147
+ const NGHTTP2_SETTINGS_HEADER_TABLE_SIZE: number;
2148
+ const NGHTTP2_SETTINGS_ENABLE_PUSH: number;
2149
+ const NGHTTP2_SETTINGS_MAX_CONCURRENT_STREAMS: number;
2150
+ const NGHTTP2_SETTINGS_INITIAL_WINDOW_SIZE: number;
2151
+ const NGHTTP2_SETTINGS_MAX_FRAME_SIZE: number;
2152
+ const NGHTTP2_SETTINGS_MAX_HEADER_LIST_SIZE: number;
2153
+ const PADDING_STRATEGY_NONE: number;
2154
+ const PADDING_STRATEGY_MAX: number;
2155
+ const PADDING_STRATEGY_CALLBACK: number;
2156
+ const HTTP2_HEADER_STATUS: string;
2157
+ const HTTP2_HEADER_METHOD: string;
2158
+ const HTTP2_HEADER_AUTHORITY: string;
2159
+ const HTTP2_HEADER_SCHEME: string;
2160
+ const HTTP2_HEADER_PATH: string;
2161
+ const HTTP2_HEADER_ACCEPT_CHARSET: string;
2162
+ const HTTP2_HEADER_ACCEPT_ENCODING: string;
2163
+ const HTTP2_HEADER_ACCEPT_LANGUAGE: string;
2164
+ const HTTP2_HEADER_ACCEPT_RANGES: string;
2165
+ const HTTP2_HEADER_ACCEPT: string;
2166
+ const HTTP2_HEADER_ACCESS_CONTROL_ALLOW_CREDENTIALS: string;
2167
+ const HTTP2_HEADER_ACCESS_CONTROL_ALLOW_HEADERS: string;
2168
+ const HTTP2_HEADER_ACCESS_CONTROL_ALLOW_METHODS: string;
2169
+ const HTTP2_HEADER_ACCESS_CONTROL_ALLOW_ORIGIN: string;
2170
+ const HTTP2_HEADER_ACCESS_CONTROL_EXPOSE_HEADERS: string;
2171
+ const HTTP2_HEADER_ACCESS_CONTROL_REQUEST_HEADERS: string;
2172
+ const HTTP2_HEADER_ACCESS_CONTROL_REQUEST_METHOD: string;
2173
+ const HTTP2_HEADER_AGE: string;
2174
+ const HTTP2_HEADER_ALLOW: string;
2175
+ const HTTP2_HEADER_AUTHORIZATION: string;
2176
+ const HTTP2_HEADER_CACHE_CONTROL: string;
2177
+ const HTTP2_HEADER_CONNECTION: string;
2178
+ const HTTP2_HEADER_CONTENT_DISPOSITION: string;
2179
+ const HTTP2_HEADER_CONTENT_ENCODING: string;
2180
+ const HTTP2_HEADER_CONTENT_LANGUAGE: string;
2181
+ const HTTP2_HEADER_CONTENT_LENGTH: string;
2182
+ const HTTP2_HEADER_CONTENT_LOCATION: string;
2183
+ const HTTP2_HEADER_CONTENT_MD5: string;
2184
+ const HTTP2_HEADER_CONTENT_RANGE: string;
2185
+ const HTTP2_HEADER_CONTENT_TYPE: string;
2186
+ const HTTP2_HEADER_COOKIE: string;
2187
+ const HTTP2_HEADER_DATE: string;
2188
+ const HTTP2_HEADER_ETAG: string;
2189
+ const HTTP2_HEADER_EXPECT: string;
2190
+ const HTTP2_HEADER_EXPIRES: string;
2191
+ const HTTP2_HEADER_FROM: string;
2192
+ const HTTP2_HEADER_HOST: string;
2193
+ const HTTP2_HEADER_IF_MATCH: string;
2194
+ const HTTP2_HEADER_IF_MODIFIED_SINCE: string;
2195
+ const HTTP2_HEADER_IF_NONE_MATCH: string;
2196
+ const HTTP2_HEADER_IF_RANGE: string;
2197
+ const HTTP2_HEADER_IF_UNMODIFIED_SINCE: string;
2198
+ const HTTP2_HEADER_LAST_MODIFIED: string;
2199
+ const HTTP2_HEADER_LINK: string;
2200
+ const HTTP2_HEADER_LOCATION: string;
2201
+ const HTTP2_HEADER_MAX_FORWARDS: string;
2202
+ const HTTP2_HEADER_PREFER: string;
2203
+ const HTTP2_HEADER_PROXY_AUTHENTICATE: string;
2204
+ const HTTP2_HEADER_PROXY_AUTHORIZATION: string;
2205
+ const HTTP2_HEADER_RANGE: string;
2206
+ const HTTP2_HEADER_REFERER: string;
2207
+ const HTTP2_HEADER_REFRESH: string;
2208
+ const HTTP2_HEADER_RETRY_AFTER: string;
2209
+ const HTTP2_HEADER_SERVER: string;
2210
+ const HTTP2_HEADER_SET_COOKIE: string;
2211
+ const HTTP2_HEADER_STRICT_TRANSPORT_SECURITY: string;
2212
+ const HTTP2_HEADER_TRANSFER_ENCODING: string;
2213
+ const HTTP2_HEADER_TE: string;
2214
+ const HTTP2_HEADER_UPGRADE: string;
2215
+ const HTTP2_HEADER_USER_AGENT: string;
2216
+ const HTTP2_HEADER_VARY: string;
2217
+ const HTTP2_HEADER_VIA: string;
2218
+ const HTTP2_HEADER_WWW_AUTHENTICATE: string;
2219
+ const HTTP2_HEADER_HTTP2_SETTINGS: string;
2220
+ const HTTP2_HEADER_KEEP_ALIVE: string;
2221
+ const HTTP2_HEADER_PROXY_CONNECTION: string;
2222
+ const HTTP2_METHOD_ACL: string;
2223
+ const HTTP2_METHOD_BASELINE_CONTROL: string;
2224
+ const HTTP2_METHOD_BIND: string;
2225
+ const HTTP2_METHOD_CHECKIN: string;
2226
+ const HTTP2_METHOD_CHECKOUT: string;
2227
+ const HTTP2_METHOD_CONNECT: string;
2228
+ const HTTP2_METHOD_COPY: string;
2229
+ const HTTP2_METHOD_DELETE: string;
2230
+ const HTTP2_METHOD_GET: string;
2231
+ const HTTP2_METHOD_HEAD: string;
2232
+ const HTTP2_METHOD_LABEL: string;
2233
+ const HTTP2_METHOD_LINK: string;
2234
+ const HTTP2_METHOD_LOCK: string;
2235
+ const HTTP2_METHOD_MERGE: string;
2236
+ const HTTP2_METHOD_MKACTIVITY: string;
2237
+ const HTTP2_METHOD_MKCALENDAR: string;
2238
+ const HTTP2_METHOD_MKCOL: string;
2239
+ const HTTP2_METHOD_MKREDIRECTREF: string;
2240
+ const HTTP2_METHOD_MKWORKSPACE: string;
2241
+ const HTTP2_METHOD_MOVE: string;
2242
+ const HTTP2_METHOD_OPTIONS: string;
2243
+ const HTTP2_METHOD_ORDERPATCH: string;
2244
+ const HTTP2_METHOD_PATCH: string;
2245
+ const HTTP2_METHOD_POST: string;
2246
+ const HTTP2_METHOD_PRI: string;
2247
+ const HTTP2_METHOD_PROPFIND: string;
2248
+ const HTTP2_METHOD_PROPPATCH: string;
2249
+ const HTTP2_METHOD_PUT: string;
2250
+ const HTTP2_METHOD_REBIND: string;
2251
+ const HTTP2_METHOD_REPORT: string;
2252
+ const HTTP2_METHOD_SEARCH: string;
2253
+ const HTTP2_METHOD_TRACE: string;
2254
+ const HTTP2_METHOD_UNBIND: string;
2255
+ const HTTP2_METHOD_UNCHECKOUT: string;
2256
+ const HTTP2_METHOD_UNLINK: string;
2257
+ const HTTP2_METHOD_UNLOCK: string;
2258
+ const HTTP2_METHOD_UPDATE: string;
2259
+ const HTTP2_METHOD_UPDATEREDIRECTREF: string;
2260
+ const HTTP2_METHOD_VERSION_CONTROL: string;
2261
+ const HTTP_STATUS_CONTINUE: number;
2262
+ const HTTP_STATUS_SWITCHING_PROTOCOLS: number;
2263
+ const HTTP_STATUS_PROCESSING: number;
2264
+ const HTTP_STATUS_OK: number;
2265
+ const HTTP_STATUS_CREATED: number;
2266
+ const HTTP_STATUS_ACCEPTED: number;
2267
+ const HTTP_STATUS_NON_AUTHORITATIVE_INFORMATION: number;
2268
+ const HTTP_STATUS_NO_CONTENT: number;
2269
+ const HTTP_STATUS_RESET_CONTENT: number;
2270
+ const HTTP_STATUS_PARTIAL_CONTENT: number;
2271
+ const HTTP_STATUS_MULTI_STATUS: number;
2272
+ const HTTP_STATUS_ALREADY_REPORTED: number;
2273
+ const HTTP_STATUS_IM_USED: number;
2274
+ const HTTP_STATUS_MULTIPLE_CHOICES: number;
2275
+ const HTTP_STATUS_MOVED_PERMANENTLY: number;
2276
+ const HTTP_STATUS_FOUND: number;
2277
+ const HTTP_STATUS_SEE_OTHER: number;
2278
+ const HTTP_STATUS_NOT_MODIFIED: number;
2279
+ const HTTP_STATUS_USE_PROXY: number;
2280
+ const HTTP_STATUS_TEMPORARY_REDIRECT: number;
2281
+ const HTTP_STATUS_PERMANENT_REDIRECT: number;
2282
+ const HTTP_STATUS_BAD_REQUEST: number;
2283
+ const HTTP_STATUS_UNAUTHORIZED: number;
2284
+ const HTTP_STATUS_PAYMENT_REQUIRED: number;
2285
+ const HTTP_STATUS_FORBIDDEN: number;
2286
+ const HTTP_STATUS_NOT_FOUND: number;
2287
+ const HTTP_STATUS_METHOD_NOT_ALLOWED: number;
2288
+ const HTTP_STATUS_NOT_ACCEPTABLE: number;
2289
+ const HTTP_STATUS_PROXY_AUTHENTICATION_REQUIRED: number;
2290
+ const HTTP_STATUS_REQUEST_TIMEOUT: number;
2291
+ const HTTP_STATUS_CONFLICT: number;
2292
+ const HTTP_STATUS_GONE: number;
2293
+ const HTTP_STATUS_LENGTH_REQUIRED: number;
2294
+ const HTTP_STATUS_PRECONDITION_FAILED: number;
2295
+ const HTTP_STATUS_PAYLOAD_TOO_LARGE: number;
2296
+ const HTTP_STATUS_URI_TOO_LONG: number;
2297
+ const HTTP_STATUS_UNSUPPORTED_MEDIA_TYPE: number;
2298
+ const HTTP_STATUS_RANGE_NOT_SATISFIABLE: number;
2299
+ const HTTP_STATUS_EXPECTATION_FAILED: number;
2300
+ const HTTP_STATUS_TEAPOT: number;
2301
+ const HTTP_STATUS_MISDIRECTED_REQUEST: number;
2302
+ const HTTP_STATUS_UNPROCESSABLE_ENTITY: number;
2303
+ const HTTP_STATUS_LOCKED: number;
2304
+ const HTTP_STATUS_FAILED_DEPENDENCY: number;
2305
+ const HTTP_STATUS_UNORDERED_COLLECTION: number;
2306
+ const HTTP_STATUS_UPGRADE_REQUIRED: number;
2307
+ const HTTP_STATUS_PRECONDITION_REQUIRED: number;
2308
+ const HTTP_STATUS_TOO_MANY_REQUESTS: number;
2309
+ const HTTP_STATUS_REQUEST_HEADER_FIELDS_TOO_LARGE: number;
2310
+ const HTTP_STATUS_UNAVAILABLE_FOR_LEGAL_REASONS: number;
2311
+ const HTTP_STATUS_INTERNAL_SERVER_ERROR: number;
2312
+ const HTTP_STATUS_NOT_IMPLEMENTED: number;
2313
+ const HTTP_STATUS_BAD_GATEWAY: number;
2314
+ const HTTP_STATUS_SERVICE_UNAVAILABLE: number;
2315
+ const HTTP_STATUS_GATEWAY_TIMEOUT: number;
2316
+ const HTTP_STATUS_HTTP_VERSION_NOT_SUPPORTED: number;
2317
+ const HTTP_STATUS_VARIANT_ALSO_NEGOTIATES: number;
2318
+ const HTTP_STATUS_INSUFFICIENT_STORAGE: number;
2319
+ const HTTP_STATUS_LOOP_DETECTED: number;
2320
+ const HTTP_STATUS_BANDWIDTH_LIMIT_EXCEEDED: number;
2321
+ const HTTP_STATUS_NOT_EXTENDED: number;
2322
+ const HTTP_STATUS_NETWORK_AUTHENTICATION_REQUIRED: number;
2323
+ }
2324
+ /**
2325
+ * This symbol can be set as a property on the HTTP/2 headers object with
2326
+ * an array value in order to provide a list of headers considered sensitive.
2327
+ */
2328
+ const sensitiveHeaders: symbol;
2329
+ /**
2330
+ * Returns an object containing the default settings for an `Http2Session` instance. This method returns a new object instance every time it is called
2331
+ * so instances returned may be safely modified for use.
2332
+ * @since v8.4.0
2333
+ */
2334
+ function getDefaultSettings(): Settings;
2335
+ /**
2336
+ * Returns a `Buffer` instance containing serialized representation of the given
2337
+ * HTTP/2 settings as specified in the [HTTP/2](https://tools.ietf.org/html/rfc7540) specification. This is intended
2338
+ * for use with the `HTTP2-Settings` header field.
2339
+ *
2340
+ * ```js
2341
+ * import http2 from 'node:http2';
2342
+ *
2343
+ * const packed = http2.getPackedSettings({ enablePush: false });
2344
+ *
2345
+ * console.log(packed.toString('base64'));
2346
+ * // Prints: AAIAAAAA
2347
+ * ```
2348
+ * @since v8.4.0
2349
+ */
2350
+ function getPackedSettings(settings: Settings): NonSharedBuffer;
2351
+ /**
2352
+ * Returns a `HTTP/2 Settings Object` containing the deserialized settings from
2353
+ * the given `Buffer` as generated by `http2.getPackedSettings()`.
2354
+ * @since v8.4.0
2355
+ * @param buf The packed settings.
2356
+ */
2357
+ function getUnpackedSettings(buf: Uint8Array): Settings;
2358
+ /**
2359
+ * Returns a `net.Server` instance that creates and manages `Http2Session` instances.
2360
+ *
2361
+ * Since there are no browsers known that support [unencrypted HTTP/2](https://http2.github.io/faq/#does-http2-require-encryption), the use of {@link createSecureServer} is necessary when
2362
+ * communicating
2363
+ * with browser clients.
2364
+ *
2365
+ * ```js
2366
+ * import http2 from 'node:http2';
2367
+ *
2368
+ * // Create an unencrypted HTTP/2 server.
2369
+ * // Since there are no browsers known that support
2370
+ * // unencrypted HTTP/2, the use of `http2.createSecureServer()`
2371
+ * // is necessary when communicating with browser clients.
2372
+ * const server = http2.createServer();
2373
+ *
2374
+ * server.on('stream', (stream, headers) => {
2375
+ * stream.respond({
2376
+ * 'content-type': 'text/html; charset=utf-8',
2377
+ * ':status': 200,
2378
+ * });
2379
+ * stream.end('<h1>Hello World</h1>');
2380
+ * });
2381
+ *
2382
+ * server.listen(8000);
2383
+ * ```
2384
+ * @since v8.4.0
2385
+ * @param onRequestHandler See `Compatibility API`
2386
+ */
2387
+ function createServer(
2388
+ onRequestHandler?: (request: Http2ServerRequest, response: Http2ServerResponse) => void,
2389
+ ): Http2Server;
2390
+ function createServer<
2391
+ Http1Request extends typeof IncomingMessage = typeof IncomingMessage,
2392
+ Http1Response extends typeof ServerResponse<InstanceType<Http1Request>> = typeof ServerResponse,
2393
+ Http2Request extends typeof Http2ServerRequest = typeof Http2ServerRequest,
2394
+ Http2Response extends typeof Http2ServerResponse<InstanceType<Http2Request>> = typeof Http2ServerResponse,
2395
+ >(
2396
+ options: ServerOptions<Http1Request, Http1Response, Http2Request, Http2Response>,
2397
+ onRequestHandler?: (request: InstanceType<Http2Request>, response: InstanceType<Http2Response>) => void,
2398
+ ): Http2Server<Http1Request, Http1Response, Http2Request, Http2Response>;
2399
+ /**
2400
+ * Returns a `tls.Server` instance that creates and manages `Http2Session` instances.
2401
+ *
2402
+ * ```js
2403
+ * import http2 from 'node:http2';
2404
+ * import fs from 'node:fs';
2405
+ *
2406
+ * const options = {
2407
+ * key: fs.readFileSync('server-key.pem'),
2408
+ * cert: fs.readFileSync('server-cert.pem'),
2409
+ * };
2410
+ *
2411
+ * // Create a secure HTTP/2 server
2412
+ * const server = http2.createSecureServer(options);
2413
+ *
2414
+ * server.on('stream', (stream, headers) => {
2415
+ * stream.respond({
2416
+ * 'content-type': 'text/html; charset=utf-8',
2417
+ * ':status': 200,
2418
+ * });
2419
+ * stream.end('<h1>Hello World</h1>');
2420
+ * });
2421
+ *
2422
+ * server.listen(8443);
2423
+ * ```
2424
+ * @since v8.4.0
2425
+ * @param onRequestHandler See `Compatibility API`
2426
+ */
2427
+ function createSecureServer(
2428
+ onRequestHandler?: (request: Http2ServerRequest, response: Http2ServerResponse) => void,
2429
+ ): Http2SecureServer;
2430
+ function createSecureServer<
2431
+ Http1Request extends typeof IncomingMessage = typeof IncomingMessage,
2432
+ Http1Response extends typeof ServerResponse<InstanceType<Http1Request>> = typeof ServerResponse,
2433
+ Http2Request extends typeof Http2ServerRequest = typeof Http2ServerRequest,
2434
+ Http2Response extends typeof Http2ServerResponse<InstanceType<Http2Request>> = typeof Http2ServerResponse,
2435
+ >(
2436
+ options: SecureServerOptions<Http1Request, Http1Response, Http2Request, Http2Response>,
2437
+ onRequestHandler?: (request: InstanceType<Http2Request>, response: InstanceType<Http2Response>) => void,
2438
+ ): Http2SecureServer<Http1Request, Http1Response, Http2Request, Http2Response>;
2439
+ /**
2440
+ * Returns a `ClientHttp2Session` instance.
2441
+ *
2442
+ * ```js
2443
+ * import http2 from 'node:http2';
2444
+ * const client = http2.connect('https://localhost:1234');
2445
+ *
2446
+ * // Use the client
2447
+ *
2448
+ * client.close();
2449
+ * ```
2450
+ * @since v8.4.0
2451
+ * @param authority The remote HTTP/2 server to connect to. This must be in the form of a minimal, valid URL with the `http://` or `https://` prefix, host name, and IP port (if a non-default port
2452
+ * is used). Userinfo (user ID and password), path, querystring, and fragment details in the URL will be ignored.
2453
+ * @param listener Will be registered as a one-time listener of the {@link 'connect'} event.
2454
+ */
2455
+ function connect(
2456
+ authority: string | url.URL,
2457
+ listener: (session: ClientHttp2Session, socket: net.Socket | tls.TLSSocket) => void,
2458
+ ): ClientHttp2Session;
2459
+ function connect(
2460
+ authority: string | url.URL,
2461
+ options?: ClientSessionOptions | SecureClientSessionOptions,
2462
+ listener?: (session: ClientHttp2Session, socket: net.Socket | tls.TLSSocket) => void,
2463
+ ): ClientHttp2Session;
2464
+ /**
2465
+ * Create an HTTP/2 server session from an existing socket.
2466
+ * @param socket A Duplex Stream
2467
+ * @param options Any `{@link createServer}` options can be provided.
2468
+ * @since v20.12.0
2469
+ */
2470
+ function performServerHandshake<
2471
+ Http1Request extends typeof IncomingMessage = typeof IncomingMessage,
2472
+ Http1Response extends typeof ServerResponse<InstanceType<Http1Request>> = typeof ServerResponse,
2473
+ Http2Request extends typeof Http2ServerRequest = typeof Http2ServerRequest,
2474
+ Http2Response extends typeof Http2ServerResponse<InstanceType<Http2Request>> = typeof Http2ServerResponse,
2475
+ >(
2476
+ socket: stream.Duplex,
2477
+ options?: ServerOptions<Http1Request, Http1Response, Http2Request, Http2Response>,
2478
+ ): ServerHttp2Session<Http1Request, Http1Response, Http2Request, Http2Response>;
2479
+ }
2480
+ declare module "node:http2" {
2481
+ export { OutgoingHttpHeaders } from "node:http";
2482
+ }
2483
+ declare module "http2" {
2484
+ export * from "node:http2";
2485
+ }