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,4406 @@
1
+ // These definitions are automatically generated by the generate-inspector script.
2
+ // Do not edit this file directly.
3
+ // See scripts/generate-inspector/README.md for information on how to update the protocol definitions.
4
+ // Changes to the module itself should be added to the generator template (scripts/generate-inspector/inspector.d.ts.template).
5
+
6
+ declare module "node:inspector" {
7
+ interface InspectorNotification<T> {
8
+ method: string;
9
+ params: T;
10
+ }
11
+ namespace Schema {
12
+ /**
13
+ * Description of the protocol domain.
14
+ */
15
+ interface Domain {
16
+ /**
17
+ * Domain name.
18
+ */
19
+ name: string;
20
+ /**
21
+ * Domain version.
22
+ */
23
+ version: string;
24
+ }
25
+ interface GetDomainsReturnType {
26
+ /**
27
+ * List of supported domains.
28
+ */
29
+ domains: Domain[];
30
+ }
31
+ }
32
+ namespace Runtime {
33
+ /**
34
+ * Unique script identifier.
35
+ */
36
+ type ScriptId = string;
37
+ /**
38
+ * Unique object identifier.
39
+ */
40
+ type RemoteObjectId = string;
41
+ /**
42
+ * Primitive value which cannot be JSON-stringified.
43
+ */
44
+ type UnserializableValue = string;
45
+ /**
46
+ * Mirror object referencing original JavaScript object.
47
+ */
48
+ interface RemoteObject {
49
+ /**
50
+ * Object type.
51
+ */
52
+ type: string;
53
+ /**
54
+ * Object subtype hint. Specified for <code>object</code> type values only.
55
+ */
56
+ subtype?: string | undefined;
57
+ /**
58
+ * Object class (constructor) name. Specified for <code>object</code> type values only.
59
+ */
60
+ className?: string | undefined;
61
+ /**
62
+ * Remote object value in case of primitive values or JSON values (if it was requested).
63
+ */
64
+ value?: any;
65
+ /**
66
+ * Primitive value which can not be JSON-stringified does not have <code>value</code>, but gets this property.
67
+ */
68
+ unserializableValue?: UnserializableValue | undefined;
69
+ /**
70
+ * String representation of the object.
71
+ */
72
+ description?: string | undefined;
73
+ /**
74
+ * Unique object identifier (for non-primitive values).
75
+ */
76
+ objectId?: RemoteObjectId | undefined;
77
+ /**
78
+ * Preview containing abbreviated property values. Specified for <code>object</code> type values only.
79
+ * @experimental
80
+ */
81
+ preview?: ObjectPreview | undefined;
82
+ /**
83
+ * @experimental
84
+ */
85
+ customPreview?: CustomPreview | undefined;
86
+ }
87
+ /**
88
+ * @experimental
89
+ */
90
+ interface CustomPreview {
91
+ header: string;
92
+ hasBody: boolean;
93
+ formatterObjectId: RemoteObjectId;
94
+ bindRemoteObjectFunctionId: RemoteObjectId;
95
+ configObjectId?: RemoteObjectId | undefined;
96
+ }
97
+ /**
98
+ * Object containing abbreviated remote object value.
99
+ * @experimental
100
+ */
101
+ interface ObjectPreview {
102
+ /**
103
+ * Object type.
104
+ */
105
+ type: string;
106
+ /**
107
+ * Object subtype hint. Specified for <code>object</code> type values only.
108
+ */
109
+ subtype?: string | undefined;
110
+ /**
111
+ * String representation of the object.
112
+ */
113
+ description?: string | undefined;
114
+ /**
115
+ * True iff some of the properties or entries of the original object did not fit.
116
+ */
117
+ overflow: boolean;
118
+ /**
119
+ * List of the properties.
120
+ */
121
+ properties: PropertyPreview[];
122
+ /**
123
+ * List of the entries. Specified for <code>map</code> and <code>set</code> subtype values only.
124
+ */
125
+ entries?: EntryPreview[] | undefined;
126
+ }
127
+ /**
128
+ * @experimental
129
+ */
130
+ interface PropertyPreview {
131
+ /**
132
+ * Property name.
133
+ */
134
+ name: string;
135
+ /**
136
+ * Object type. Accessor means that the property itself is an accessor property.
137
+ */
138
+ type: string;
139
+ /**
140
+ * User-friendly property value string.
141
+ */
142
+ value?: string | undefined;
143
+ /**
144
+ * Nested value preview.
145
+ */
146
+ valuePreview?: ObjectPreview | undefined;
147
+ /**
148
+ * Object subtype hint. Specified for <code>object</code> type values only.
149
+ */
150
+ subtype?: string | undefined;
151
+ }
152
+ /**
153
+ * @experimental
154
+ */
155
+ interface EntryPreview {
156
+ /**
157
+ * Preview of the key. Specified for map-like collection entries.
158
+ */
159
+ key?: ObjectPreview | undefined;
160
+ /**
161
+ * Preview of the value.
162
+ */
163
+ value: ObjectPreview;
164
+ }
165
+ /**
166
+ * Object property descriptor.
167
+ */
168
+ interface PropertyDescriptor {
169
+ /**
170
+ * Property name or symbol description.
171
+ */
172
+ name: string;
173
+ /**
174
+ * The value associated with the property.
175
+ */
176
+ value?: RemoteObject | undefined;
177
+ /**
178
+ * True if the value associated with the property may be changed (data descriptors only).
179
+ */
180
+ writable?: boolean | undefined;
181
+ /**
182
+ * A function which serves as a getter for the property, or <code>undefined</code> if there is no getter (accessor descriptors only).
183
+ */
184
+ get?: RemoteObject | undefined;
185
+ /**
186
+ * A function which serves as a setter for the property, or <code>undefined</code> if there is no setter (accessor descriptors only).
187
+ */
188
+ set?: RemoteObject | undefined;
189
+ /**
190
+ * True if the type of this property descriptor may be changed and if the property may be deleted from the corresponding object.
191
+ */
192
+ configurable: boolean;
193
+ /**
194
+ * True if this property shows up during enumeration of the properties on the corresponding object.
195
+ */
196
+ enumerable: boolean;
197
+ /**
198
+ * True if the result was thrown during the evaluation.
199
+ */
200
+ wasThrown?: boolean | undefined;
201
+ /**
202
+ * True if the property is owned for the object.
203
+ */
204
+ isOwn?: boolean | undefined;
205
+ /**
206
+ * Property symbol object, if the property is of the <code>symbol</code> type.
207
+ */
208
+ symbol?: RemoteObject | undefined;
209
+ }
210
+ /**
211
+ * Object internal property descriptor. This property isn't normally visible in JavaScript code.
212
+ */
213
+ interface InternalPropertyDescriptor {
214
+ /**
215
+ * Conventional property name.
216
+ */
217
+ name: string;
218
+ /**
219
+ * The value associated with the property.
220
+ */
221
+ value?: RemoteObject | undefined;
222
+ }
223
+ /**
224
+ * Represents function call argument. Either remote object id <code>objectId</code>, primitive <code>value</code>, unserializable primitive value or neither of (for undefined) them should be specified.
225
+ */
226
+ interface CallArgument {
227
+ /**
228
+ * Primitive value or serializable javascript object.
229
+ */
230
+ value?: any;
231
+ /**
232
+ * Primitive value which can not be JSON-stringified.
233
+ */
234
+ unserializableValue?: UnserializableValue | undefined;
235
+ /**
236
+ * Remote object handle.
237
+ */
238
+ objectId?: RemoteObjectId | undefined;
239
+ }
240
+ /**
241
+ * Id of an execution context.
242
+ */
243
+ type ExecutionContextId = number;
244
+ /**
245
+ * Description of an isolated world.
246
+ */
247
+ interface ExecutionContextDescription {
248
+ /**
249
+ * Unique id of the execution context. It can be used to specify in which execution context script evaluation should be performed.
250
+ */
251
+ id: ExecutionContextId;
252
+ /**
253
+ * Execution context origin.
254
+ */
255
+ origin: string;
256
+ /**
257
+ * Human readable name describing given context.
258
+ */
259
+ name: string;
260
+ /**
261
+ * Embedder-specific auxiliary data.
262
+ */
263
+ auxData?: object | undefined;
264
+ }
265
+ /**
266
+ * Detailed information about exception (or error) that was thrown during script compilation or execution.
267
+ */
268
+ interface ExceptionDetails {
269
+ /**
270
+ * Exception id.
271
+ */
272
+ exceptionId: number;
273
+ /**
274
+ * Exception text, which should be used together with exception object when available.
275
+ */
276
+ text: string;
277
+ /**
278
+ * Line number of the exception location (0-based).
279
+ */
280
+ lineNumber: number;
281
+ /**
282
+ * Column number of the exception location (0-based).
283
+ */
284
+ columnNumber: number;
285
+ /**
286
+ * Script ID of the exception location.
287
+ */
288
+ scriptId?: ScriptId | undefined;
289
+ /**
290
+ * URL of the exception location, to be used when the script was not reported.
291
+ */
292
+ url?: string | undefined;
293
+ /**
294
+ * JavaScript stack trace if available.
295
+ */
296
+ stackTrace?: StackTrace | undefined;
297
+ /**
298
+ * Exception object if available.
299
+ */
300
+ exception?: RemoteObject | undefined;
301
+ /**
302
+ * Identifier of the context where exception happened.
303
+ */
304
+ executionContextId?: ExecutionContextId | undefined;
305
+ }
306
+ /**
307
+ * Number of milliseconds since epoch.
308
+ */
309
+ type Timestamp = number;
310
+ /**
311
+ * Stack entry for runtime errors and assertions.
312
+ */
313
+ interface CallFrame {
314
+ /**
315
+ * JavaScript function name.
316
+ */
317
+ functionName: string;
318
+ /**
319
+ * JavaScript script id.
320
+ */
321
+ scriptId: ScriptId;
322
+ /**
323
+ * JavaScript script name or url.
324
+ */
325
+ url: string;
326
+ /**
327
+ * JavaScript script line number (0-based).
328
+ */
329
+ lineNumber: number;
330
+ /**
331
+ * JavaScript script column number (0-based).
332
+ */
333
+ columnNumber: number;
334
+ }
335
+ /**
336
+ * Call frames for assertions or error messages.
337
+ */
338
+ interface StackTrace {
339
+ /**
340
+ * String label of this stack trace. For async traces this may be a name of the function that initiated the async call.
341
+ */
342
+ description?: string | undefined;
343
+ /**
344
+ * JavaScript function name.
345
+ */
346
+ callFrames: CallFrame[];
347
+ /**
348
+ * Asynchronous JavaScript stack trace that preceded this stack, if available.
349
+ */
350
+ parent?: StackTrace | undefined;
351
+ /**
352
+ * Asynchronous JavaScript stack trace that preceded this stack, if available.
353
+ * @experimental
354
+ */
355
+ parentId?: StackTraceId | undefined;
356
+ }
357
+ /**
358
+ * Unique identifier of current debugger.
359
+ * @experimental
360
+ */
361
+ type UniqueDebuggerId = string;
362
+ /**
363
+ * If <code>debuggerId</code> is set stack trace comes from another debugger and can be resolved there. This allows to track cross-debugger calls. See <code>Runtime.StackTrace</code> and <code>Debugger.paused</code> for usages.
364
+ * @experimental
365
+ */
366
+ interface StackTraceId {
367
+ id: string;
368
+ debuggerId?: UniqueDebuggerId | undefined;
369
+ }
370
+ interface EvaluateParameterType {
371
+ /**
372
+ * Expression to evaluate.
373
+ */
374
+ expression: string;
375
+ /**
376
+ * Symbolic group name that can be used to release multiple objects.
377
+ */
378
+ objectGroup?: string | undefined;
379
+ /**
380
+ * Determines whether Command Line API should be available during the evaluation.
381
+ */
382
+ includeCommandLineAPI?: boolean | undefined;
383
+ /**
384
+ * In silent mode exceptions thrown during evaluation are not reported and do not pause execution. Overrides <code>setPauseOnException</code> state.
385
+ */
386
+ silent?: boolean | undefined;
387
+ /**
388
+ * Specifies in which execution context to perform evaluation. If the parameter is omitted the evaluation will be performed in the context of the inspected page.
389
+ */
390
+ contextId?: ExecutionContextId | undefined;
391
+ /**
392
+ * Whether the result is expected to be a JSON object that should be sent by value.
393
+ */
394
+ returnByValue?: boolean | undefined;
395
+ /**
396
+ * Whether preview should be generated for the result.
397
+ * @experimental
398
+ */
399
+ generatePreview?: boolean | undefined;
400
+ /**
401
+ * Whether execution should be treated as initiated by user in the UI.
402
+ */
403
+ userGesture?: boolean | undefined;
404
+ /**
405
+ * Whether execution should <code>await</code> for resulting value and return once awaited promise is resolved.
406
+ */
407
+ awaitPromise?: boolean | undefined;
408
+ }
409
+ interface AwaitPromiseParameterType {
410
+ /**
411
+ * Identifier of the promise.
412
+ */
413
+ promiseObjectId: RemoteObjectId;
414
+ /**
415
+ * Whether the result is expected to be a JSON object that should be sent by value.
416
+ */
417
+ returnByValue?: boolean | undefined;
418
+ /**
419
+ * Whether preview should be generated for the result.
420
+ */
421
+ generatePreview?: boolean | undefined;
422
+ }
423
+ interface CallFunctionOnParameterType {
424
+ /**
425
+ * Declaration of the function to call.
426
+ */
427
+ functionDeclaration: string;
428
+ /**
429
+ * Identifier of the object to call function on. Either objectId or executionContextId should be specified.
430
+ */
431
+ objectId?: RemoteObjectId | undefined;
432
+ /**
433
+ * Call arguments. All call arguments must belong to the same JavaScript world as the target object.
434
+ */
435
+ arguments?: CallArgument[] | undefined;
436
+ /**
437
+ * In silent mode exceptions thrown during evaluation are not reported and do not pause execution. Overrides <code>setPauseOnException</code> state.
438
+ */
439
+ silent?: boolean | undefined;
440
+ /**
441
+ * Whether the result is expected to be a JSON object which should be sent by value.
442
+ */
443
+ returnByValue?: boolean | undefined;
444
+ /**
445
+ * Whether preview should be generated for the result.
446
+ * @experimental
447
+ */
448
+ generatePreview?: boolean | undefined;
449
+ /**
450
+ * Whether execution should be treated as initiated by user in the UI.
451
+ */
452
+ userGesture?: boolean | undefined;
453
+ /**
454
+ * Whether execution should <code>await</code> for resulting value and return once awaited promise is resolved.
455
+ */
456
+ awaitPromise?: boolean | undefined;
457
+ /**
458
+ * Specifies execution context which global object will be used to call function on. Either executionContextId or objectId should be specified.
459
+ */
460
+ executionContextId?: ExecutionContextId | undefined;
461
+ /**
462
+ * Symbolic group name that can be used to release multiple objects. If objectGroup is not specified and objectId is, objectGroup will be inherited from object.
463
+ */
464
+ objectGroup?: string | undefined;
465
+ }
466
+ interface GetPropertiesParameterType {
467
+ /**
468
+ * Identifier of the object to return properties for.
469
+ */
470
+ objectId: RemoteObjectId;
471
+ /**
472
+ * If true, returns properties belonging only to the element itself, not to its prototype chain.
473
+ */
474
+ ownProperties?: boolean | undefined;
475
+ /**
476
+ * If true, returns accessor properties (with getter/setter) only; internal properties are not returned either.
477
+ * @experimental
478
+ */
479
+ accessorPropertiesOnly?: boolean | undefined;
480
+ /**
481
+ * Whether preview should be generated for the results.
482
+ * @experimental
483
+ */
484
+ generatePreview?: boolean | undefined;
485
+ }
486
+ interface ReleaseObjectParameterType {
487
+ /**
488
+ * Identifier of the object to release.
489
+ */
490
+ objectId: RemoteObjectId;
491
+ }
492
+ interface ReleaseObjectGroupParameterType {
493
+ /**
494
+ * Symbolic object group name.
495
+ */
496
+ objectGroup: string;
497
+ }
498
+ interface SetCustomObjectFormatterEnabledParameterType {
499
+ enabled: boolean;
500
+ }
501
+ interface CompileScriptParameterType {
502
+ /**
503
+ * Expression to compile.
504
+ */
505
+ expression: string;
506
+ /**
507
+ * Source url to be set for the script.
508
+ */
509
+ sourceURL: string;
510
+ /**
511
+ * Specifies whether the compiled script should be persisted.
512
+ */
513
+ persistScript: boolean;
514
+ /**
515
+ * Specifies in which execution context to perform script run. If the parameter is omitted the evaluation will be performed in the context of the inspected page.
516
+ */
517
+ executionContextId?: ExecutionContextId | undefined;
518
+ }
519
+ interface RunScriptParameterType {
520
+ /**
521
+ * Id of the script to run.
522
+ */
523
+ scriptId: ScriptId;
524
+ /**
525
+ * Specifies in which execution context to perform script run. If the parameter is omitted the evaluation will be performed in the context of the inspected page.
526
+ */
527
+ executionContextId?: ExecutionContextId | undefined;
528
+ /**
529
+ * Symbolic group name that can be used to release multiple objects.
530
+ */
531
+ objectGroup?: string | undefined;
532
+ /**
533
+ * In silent mode exceptions thrown during evaluation are not reported and do not pause execution. Overrides <code>setPauseOnException</code> state.
534
+ */
535
+ silent?: boolean | undefined;
536
+ /**
537
+ * Determines whether Command Line API should be available during the evaluation.
538
+ */
539
+ includeCommandLineAPI?: boolean | undefined;
540
+ /**
541
+ * Whether the result is expected to be a JSON object which should be sent by value.
542
+ */
543
+ returnByValue?: boolean | undefined;
544
+ /**
545
+ * Whether preview should be generated for the result.
546
+ */
547
+ generatePreview?: boolean | undefined;
548
+ /**
549
+ * Whether execution should <code>await</code> for resulting value and return once awaited promise is resolved.
550
+ */
551
+ awaitPromise?: boolean | undefined;
552
+ }
553
+ interface QueryObjectsParameterType {
554
+ /**
555
+ * Identifier of the prototype to return objects for.
556
+ */
557
+ prototypeObjectId: RemoteObjectId;
558
+ }
559
+ interface GlobalLexicalScopeNamesParameterType {
560
+ /**
561
+ * Specifies in which execution context to lookup global scope variables.
562
+ */
563
+ executionContextId?: ExecutionContextId | undefined;
564
+ }
565
+ interface EvaluateReturnType {
566
+ /**
567
+ * Evaluation result.
568
+ */
569
+ result: RemoteObject;
570
+ /**
571
+ * Exception details.
572
+ */
573
+ exceptionDetails?: ExceptionDetails | undefined;
574
+ }
575
+ interface AwaitPromiseReturnType {
576
+ /**
577
+ * Promise result. Will contain rejected value if promise was rejected.
578
+ */
579
+ result: RemoteObject;
580
+ /**
581
+ * Exception details if stack strace is available.
582
+ */
583
+ exceptionDetails?: ExceptionDetails | undefined;
584
+ }
585
+ interface CallFunctionOnReturnType {
586
+ /**
587
+ * Call result.
588
+ */
589
+ result: RemoteObject;
590
+ /**
591
+ * Exception details.
592
+ */
593
+ exceptionDetails?: ExceptionDetails | undefined;
594
+ }
595
+ interface GetPropertiesReturnType {
596
+ /**
597
+ * Object properties.
598
+ */
599
+ result: PropertyDescriptor[];
600
+ /**
601
+ * Internal object properties (only of the element itself).
602
+ */
603
+ internalProperties?: InternalPropertyDescriptor[] | undefined;
604
+ /**
605
+ * Exception details.
606
+ */
607
+ exceptionDetails?: ExceptionDetails | undefined;
608
+ }
609
+ interface CompileScriptReturnType {
610
+ /**
611
+ * Id of the script.
612
+ */
613
+ scriptId?: ScriptId | undefined;
614
+ /**
615
+ * Exception details.
616
+ */
617
+ exceptionDetails?: ExceptionDetails | undefined;
618
+ }
619
+ interface RunScriptReturnType {
620
+ /**
621
+ * Run result.
622
+ */
623
+ result: RemoteObject;
624
+ /**
625
+ * Exception details.
626
+ */
627
+ exceptionDetails?: ExceptionDetails | undefined;
628
+ }
629
+ interface QueryObjectsReturnType {
630
+ /**
631
+ * Array with objects.
632
+ */
633
+ objects: RemoteObject;
634
+ }
635
+ interface GlobalLexicalScopeNamesReturnType {
636
+ names: string[];
637
+ }
638
+ interface ExecutionContextCreatedEventDataType {
639
+ /**
640
+ * A newly created execution context.
641
+ */
642
+ context: ExecutionContextDescription;
643
+ }
644
+ interface ExecutionContextDestroyedEventDataType {
645
+ /**
646
+ * Id of the destroyed context
647
+ */
648
+ executionContextId: ExecutionContextId;
649
+ }
650
+ interface ExceptionThrownEventDataType {
651
+ /**
652
+ * Timestamp of the exception.
653
+ */
654
+ timestamp: Timestamp;
655
+ exceptionDetails: ExceptionDetails;
656
+ }
657
+ interface ExceptionRevokedEventDataType {
658
+ /**
659
+ * Reason describing why exception was revoked.
660
+ */
661
+ reason: string;
662
+ /**
663
+ * The id of revoked exception, as reported in <code>exceptionThrown</code>.
664
+ */
665
+ exceptionId: number;
666
+ }
667
+ interface ConsoleAPICalledEventDataType {
668
+ /**
669
+ * Type of the call.
670
+ */
671
+ type: string;
672
+ /**
673
+ * Call arguments.
674
+ */
675
+ args: RemoteObject[];
676
+ /**
677
+ * Identifier of the context where the call was made.
678
+ */
679
+ executionContextId: ExecutionContextId;
680
+ /**
681
+ * Call timestamp.
682
+ */
683
+ timestamp: Timestamp;
684
+ /**
685
+ * Stack trace captured when the call was made.
686
+ */
687
+ stackTrace?: StackTrace | undefined;
688
+ /**
689
+ * Console context descriptor for calls on non-default console context (not console.*): 'anonymous#unique-logger-id' for call on unnamed context, 'name#unique-logger-id' for call on named context.
690
+ * @experimental
691
+ */
692
+ context?: string | undefined;
693
+ }
694
+ interface InspectRequestedEventDataType {
695
+ object: RemoteObject;
696
+ hints: object;
697
+ }
698
+ }
699
+ namespace Debugger {
700
+ /**
701
+ * Breakpoint identifier.
702
+ */
703
+ type BreakpointId = string;
704
+ /**
705
+ * Call frame identifier.
706
+ */
707
+ type CallFrameId = string;
708
+ /**
709
+ * Location in the source code.
710
+ */
711
+ interface Location {
712
+ /**
713
+ * Script identifier as reported in the <code>Debugger.scriptParsed</code>.
714
+ */
715
+ scriptId: Runtime.ScriptId;
716
+ /**
717
+ * Line number in the script (0-based).
718
+ */
719
+ lineNumber: number;
720
+ /**
721
+ * Column number in the script (0-based).
722
+ */
723
+ columnNumber?: number | undefined;
724
+ }
725
+ /**
726
+ * Location in the source code.
727
+ * @experimental
728
+ */
729
+ interface ScriptPosition {
730
+ lineNumber: number;
731
+ columnNumber: number;
732
+ }
733
+ /**
734
+ * JavaScript call frame. Array of call frames form the call stack.
735
+ */
736
+ interface CallFrame {
737
+ /**
738
+ * Call frame identifier. This identifier is only valid while the virtual machine is paused.
739
+ */
740
+ callFrameId: CallFrameId;
741
+ /**
742
+ * Name of the JavaScript function called on this call frame.
743
+ */
744
+ functionName: string;
745
+ /**
746
+ * Location in the source code.
747
+ */
748
+ functionLocation?: Location | undefined;
749
+ /**
750
+ * Location in the source code.
751
+ */
752
+ location: Location;
753
+ /**
754
+ * JavaScript script name or url.
755
+ */
756
+ url: string;
757
+ /**
758
+ * Scope chain for this call frame.
759
+ */
760
+ scopeChain: Scope[];
761
+ /**
762
+ * <code>this</code> object for this call frame.
763
+ */
764
+ this: Runtime.RemoteObject;
765
+ /**
766
+ * The value being returned, if the function is at return point.
767
+ */
768
+ returnValue?: Runtime.RemoteObject | undefined;
769
+ }
770
+ /**
771
+ * Scope description.
772
+ */
773
+ interface Scope {
774
+ /**
775
+ * Scope type.
776
+ */
777
+ type: string;
778
+ /**
779
+ * Object representing the scope. For <code>global</code> and <code>with</code> scopes it represents the actual object; for the rest of the scopes, it is artificial transient object enumerating scope variables as its properties.
780
+ */
781
+ object: Runtime.RemoteObject;
782
+ name?: string | undefined;
783
+ /**
784
+ * Location in the source code where scope starts
785
+ */
786
+ startLocation?: Location | undefined;
787
+ /**
788
+ * Location in the source code where scope ends
789
+ */
790
+ endLocation?: Location | undefined;
791
+ }
792
+ /**
793
+ * Search match for resource.
794
+ */
795
+ interface SearchMatch {
796
+ /**
797
+ * Line number in resource content.
798
+ */
799
+ lineNumber: number;
800
+ /**
801
+ * Line with match content.
802
+ */
803
+ lineContent: string;
804
+ }
805
+ interface BreakLocation {
806
+ /**
807
+ * Script identifier as reported in the <code>Debugger.scriptParsed</code>.
808
+ */
809
+ scriptId: Runtime.ScriptId;
810
+ /**
811
+ * Line number in the script (0-based).
812
+ */
813
+ lineNumber: number;
814
+ /**
815
+ * Column number in the script (0-based).
816
+ */
817
+ columnNumber?: number | undefined;
818
+ type?: string | undefined;
819
+ }
820
+ interface SetBreakpointsActiveParameterType {
821
+ /**
822
+ * New value for breakpoints active state.
823
+ */
824
+ active: boolean;
825
+ }
826
+ interface SetSkipAllPausesParameterType {
827
+ /**
828
+ * New value for skip pauses state.
829
+ */
830
+ skip: boolean;
831
+ }
832
+ interface SetBreakpointByUrlParameterType {
833
+ /**
834
+ * Line number to set breakpoint at.
835
+ */
836
+ lineNumber: number;
837
+ /**
838
+ * URL of the resources to set breakpoint on.
839
+ */
840
+ url?: string | undefined;
841
+ /**
842
+ * Regex pattern for the URLs of the resources to set breakpoints on. Either <code>url</code> or <code>urlRegex</code> must be specified.
843
+ */
844
+ urlRegex?: string | undefined;
845
+ /**
846
+ * Script hash of the resources to set breakpoint on.
847
+ */
848
+ scriptHash?: string | undefined;
849
+ /**
850
+ * Offset in the line to set breakpoint at.
851
+ */
852
+ columnNumber?: number | undefined;
853
+ /**
854
+ * Expression to use as a breakpoint condition. When specified, debugger will only stop on the breakpoint if this expression evaluates to true.
855
+ */
856
+ condition?: string | undefined;
857
+ }
858
+ interface SetBreakpointParameterType {
859
+ /**
860
+ * Location to set breakpoint in.
861
+ */
862
+ location: Location;
863
+ /**
864
+ * Expression to use as a breakpoint condition. When specified, debugger will only stop on the breakpoint if this expression evaluates to true.
865
+ */
866
+ condition?: string | undefined;
867
+ }
868
+ interface RemoveBreakpointParameterType {
869
+ breakpointId: BreakpointId;
870
+ }
871
+ interface GetPossibleBreakpointsParameterType {
872
+ /**
873
+ * Start of range to search possible breakpoint locations in.
874
+ */
875
+ start: Location;
876
+ /**
877
+ * End of range to search possible breakpoint locations in (excluding). When not specified, end of scripts is used as end of range.
878
+ */
879
+ end?: Location | undefined;
880
+ /**
881
+ * Only consider locations which are in the same (non-nested) function as start.
882
+ */
883
+ restrictToFunction?: boolean | undefined;
884
+ }
885
+ interface ContinueToLocationParameterType {
886
+ /**
887
+ * Location to continue to.
888
+ */
889
+ location: Location;
890
+ targetCallFrames?: string | undefined;
891
+ }
892
+ interface PauseOnAsyncCallParameterType {
893
+ /**
894
+ * Debugger will pause when async call with given stack trace is started.
895
+ */
896
+ parentStackTraceId: Runtime.StackTraceId;
897
+ }
898
+ interface StepIntoParameterType {
899
+ /**
900
+ * Debugger will issue additional Debugger.paused notification if any async task is scheduled before next pause.
901
+ * @experimental
902
+ */
903
+ breakOnAsyncCall?: boolean | undefined;
904
+ }
905
+ interface GetStackTraceParameterType {
906
+ stackTraceId: Runtime.StackTraceId;
907
+ }
908
+ interface SearchInContentParameterType {
909
+ /**
910
+ * Id of the script to search in.
911
+ */
912
+ scriptId: Runtime.ScriptId;
913
+ /**
914
+ * String to search for.
915
+ */
916
+ query: string;
917
+ /**
918
+ * If true, search is case sensitive.
919
+ */
920
+ caseSensitive?: boolean | undefined;
921
+ /**
922
+ * If true, treats string parameter as regex.
923
+ */
924
+ isRegex?: boolean | undefined;
925
+ }
926
+ interface SetScriptSourceParameterType {
927
+ /**
928
+ * Id of the script to edit.
929
+ */
930
+ scriptId: Runtime.ScriptId;
931
+ /**
932
+ * New content of the script.
933
+ */
934
+ scriptSource: string;
935
+ /**
936
+ * If true the change will not actually be applied. Dry run may be used to get result description without actually modifying the code.
937
+ */
938
+ dryRun?: boolean | undefined;
939
+ }
940
+ interface RestartFrameParameterType {
941
+ /**
942
+ * Call frame identifier to evaluate on.
943
+ */
944
+ callFrameId: CallFrameId;
945
+ }
946
+ interface GetScriptSourceParameterType {
947
+ /**
948
+ * Id of the script to get source for.
949
+ */
950
+ scriptId: Runtime.ScriptId;
951
+ }
952
+ interface SetPauseOnExceptionsParameterType {
953
+ /**
954
+ * Pause on exceptions mode.
955
+ */
956
+ state: string;
957
+ }
958
+ interface EvaluateOnCallFrameParameterType {
959
+ /**
960
+ * Call frame identifier to evaluate on.
961
+ */
962
+ callFrameId: CallFrameId;
963
+ /**
964
+ * Expression to evaluate.
965
+ */
966
+ expression: string;
967
+ /**
968
+ * String object group name to put result into (allows rapid releasing resulting object handles using <code>releaseObjectGroup</code>).
969
+ */
970
+ objectGroup?: string | undefined;
971
+ /**
972
+ * Specifies whether command line API should be available to the evaluated expression, defaults to false.
973
+ */
974
+ includeCommandLineAPI?: boolean | undefined;
975
+ /**
976
+ * In silent mode exceptions thrown during evaluation are not reported and do not pause execution. Overrides <code>setPauseOnException</code> state.
977
+ */
978
+ silent?: boolean | undefined;
979
+ /**
980
+ * Whether the result is expected to be a JSON object that should be sent by value.
981
+ */
982
+ returnByValue?: boolean | undefined;
983
+ /**
984
+ * Whether preview should be generated for the result.
985
+ * @experimental
986
+ */
987
+ generatePreview?: boolean | undefined;
988
+ /**
989
+ * Whether to throw an exception if side effect cannot be ruled out during evaluation.
990
+ */
991
+ throwOnSideEffect?: boolean | undefined;
992
+ }
993
+ interface SetVariableValueParameterType {
994
+ /**
995
+ * 0-based number of scope as was listed in scope chain. Only 'local', 'closure' and 'catch' scope types are allowed. Other scopes could be manipulated manually.
996
+ */
997
+ scopeNumber: number;
998
+ /**
999
+ * Variable name.
1000
+ */
1001
+ variableName: string;
1002
+ /**
1003
+ * New variable value.
1004
+ */
1005
+ newValue: Runtime.CallArgument;
1006
+ /**
1007
+ * Id of callframe that holds variable.
1008
+ */
1009
+ callFrameId: CallFrameId;
1010
+ }
1011
+ interface SetReturnValueParameterType {
1012
+ /**
1013
+ * New return value.
1014
+ */
1015
+ newValue: Runtime.CallArgument;
1016
+ }
1017
+ interface SetAsyncCallStackDepthParameterType {
1018
+ /**
1019
+ * Maximum depth of async call stacks. Setting to <code>0</code> will effectively disable collecting async call stacks (default).
1020
+ */
1021
+ maxDepth: number;
1022
+ }
1023
+ interface SetBlackboxPatternsParameterType {
1024
+ /**
1025
+ * Array of regexps that will be used to check script url for blackbox state.
1026
+ */
1027
+ patterns: string[];
1028
+ }
1029
+ interface SetBlackboxedRangesParameterType {
1030
+ /**
1031
+ * Id of the script.
1032
+ */
1033
+ scriptId: Runtime.ScriptId;
1034
+ positions: ScriptPosition[];
1035
+ }
1036
+ interface EnableReturnType {
1037
+ /**
1038
+ * Unique identifier of the debugger.
1039
+ * @experimental
1040
+ */
1041
+ debuggerId: Runtime.UniqueDebuggerId;
1042
+ }
1043
+ interface SetBreakpointByUrlReturnType {
1044
+ /**
1045
+ * Id of the created breakpoint for further reference.
1046
+ */
1047
+ breakpointId: BreakpointId;
1048
+ /**
1049
+ * List of the locations this breakpoint resolved into upon addition.
1050
+ */
1051
+ locations: Location[];
1052
+ }
1053
+ interface SetBreakpointReturnType {
1054
+ /**
1055
+ * Id of the created breakpoint for further reference.
1056
+ */
1057
+ breakpointId: BreakpointId;
1058
+ /**
1059
+ * Location this breakpoint resolved into.
1060
+ */
1061
+ actualLocation: Location;
1062
+ }
1063
+ interface GetPossibleBreakpointsReturnType {
1064
+ /**
1065
+ * List of the possible breakpoint locations.
1066
+ */
1067
+ locations: BreakLocation[];
1068
+ }
1069
+ interface GetStackTraceReturnType {
1070
+ stackTrace: Runtime.StackTrace;
1071
+ }
1072
+ interface SearchInContentReturnType {
1073
+ /**
1074
+ * List of search matches.
1075
+ */
1076
+ result: SearchMatch[];
1077
+ }
1078
+ interface SetScriptSourceReturnType {
1079
+ /**
1080
+ * New stack trace in case editing has happened while VM was stopped.
1081
+ */
1082
+ callFrames?: CallFrame[] | undefined;
1083
+ /**
1084
+ * Whether current call stack was modified after applying the changes.
1085
+ */
1086
+ stackChanged?: boolean | undefined;
1087
+ /**
1088
+ * Async stack trace, if any.
1089
+ */
1090
+ asyncStackTrace?: Runtime.StackTrace | undefined;
1091
+ /**
1092
+ * Async stack trace, if any.
1093
+ * @experimental
1094
+ */
1095
+ asyncStackTraceId?: Runtime.StackTraceId | undefined;
1096
+ /**
1097
+ * Exception details if any.
1098
+ */
1099
+ exceptionDetails?: Runtime.ExceptionDetails | undefined;
1100
+ }
1101
+ interface RestartFrameReturnType {
1102
+ /**
1103
+ * New stack trace.
1104
+ */
1105
+ callFrames: CallFrame[];
1106
+ /**
1107
+ * Async stack trace, if any.
1108
+ */
1109
+ asyncStackTrace?: Runtime.StackTrace | undefined;
1110
+ /**
1111
+ * Async stack trace, if any.
1112
+ * @experimental
1113
+ */
1114
+ asyncStackTraceId?: Runtime.StackTraceId | undefined;
1115
+ }
1116
+ interface GetScriptSourceReturnType {
1117
+ /**
1118
+ * Script source.
1119
+ */
1120
+ scriptSource: string;
1121
+ }
1122
+ interface EvaluateOnCallFrameReturnType {
1123
+ /**
1124
+ * Object wrapper for the evaluation result.
1125
+ */
1126
+ result: Runtime.RemoteObject;
1127
+ /**
1128
+ * Exception details.
1129
+ */
1130
+ exceptionDetails?: Runtime.ExceptionDetails | undefined;
1131
+ }
1132
+ interface ScriptParsedEventDataType {
1133
+ /**
1134
+ * Identifier of the script parsed.
1135
+ */
1136
+ scriptId: Runtime.ScriptId;
1137
+ /**
1138
+ * URL or name of the script parsed (if any).
1139
+ */
1140
+ url: string;
1141
+ /**
1142
+ * Line offset of the script within the resource with given URL (for script tags).
1143
+ */
1144
+ startLine: number;
1145
+ /**
1146
+ * Column offset of the script within the resource with given URL.
1147
+ */
1148
+ startColumn: number;
1149
+ /**
1150
+ * Last line of the script.
1151
+ */
1152
+ endLine: number;
1153
+ /**
1154
+ * Length of the last line of the script.
1155
+ */
1156
+ endColumn: number;
1157
+ /**
1158
+ * Specifies script creation context.
1159
+ */
1160
+ executionContextId: Runtime.ExecutionContextId;
1161
+ /**
1162
+ * Content hash of the script.
1163
+ */
1164
+ hash: string;
1165
+ /**
1166
+ * Embedder-specific auxiliary data.
1167
+ */
1168
+ executionContextAuxData?: object | undefined;
1169
+ /**
1170
+ * True, if this script is generated as a result of the live edit operation.
1171
+ * @experimental
1172
+ */
1173
+ isLiveEdit?: boolean | undefined;
1174
+ /**
1175
+ * URL of source map associated with script (if any).
1176
+ */
1177
+ sourceMapURL?: string | undefined;
1178
+ /**
1179
+ * True, if this script has sourceURL.
1180
+ */
1181
+ hasSourceURL?: boolean | undefined;
1182
+ /**
1183
+ * True, if this script is ES6 module.
1184
+ */
1185
+ isModule?: boolean | undefined;
1186
+ /**
1187
+ * This script length.
1188
+ */
1189
+ length?: number | undefined;
1190
+ /**
1191
+ * JavaScript top stack frame of where the script parsed event was triggered if available.
1192
+ * @experimental
1193
+ */
1194
+ stackTrace?: Runtime.StackTrace | undefined;
1195
+ }
1196
+ interface ScriptFailedToParseEventDataType {
1197
+ /**
1198
+ * Identifier of the script parsed.
1199
+ */
1200
+ scriptId: Runtime.ScriptId;
1201
+ /**
1202
+ * URL or name of the script parsed (if any).
1203
+ */
1204
+ url: string;
1205
+ /**
1206
+ * Line offset of the script within the resource with given URL (for script tags).
1207
+ */
1208
+ startLine: number;
1209
+ /**
1210
+ * Column offset of the script within the resource with given URL.
1211
+ */
1212
+ startColumn: number;
1213
+ /**
1214
+ * Last line of the script.
1215
+ */
1216
+ endLine: number;
1217
+ /**
1218
+ * Length of the last line of the script.
1219
+ */
1220
+ endColumn: number;
1221
+ /**
1222
+ * Specifies script creation context.
1223
+ */
1224
+ executionContextId: Runtime.ExecutionContextId;
1225
+ /**
1226
+ * Content hash of the script.
1227
+ */
1228
+ hash: string;
1229
+ /**
1230
+ * Embedder-specific auxiliary data.
1231
+ */
1232
+ executionContextAuxData?: object | undefined;
1233
+ /**
1234
+ * URL of source map associated with script (if any).
1235
+ */
1236
+ sourceMapURL?: string | undefined;
1237
+ /**
1238
+ * True, if this script has sourceURL.
1239
+ */
1240
+ hasSourceURL?: boolean | undefined;
1241
+ /**
1242
+ * True, if this script is ES6 module.
1243
+ */
1244
+ isModule?: boolean | undefined;
1245
+ /**
1246
+ * This script length.
1247
+ */
1248
+ length?: number | undefined;
1249
+ /**
1250
+ * JavaScript top stack frame of where the script parsed event was triggered if available.
1251
+ * @experimental
1252
+ */
1253
+ stackTrace?: Runtime.StackTrace | undefined;
1254
+ }
1255
+ interface BreakpointResolvedEventDataType {
1256
+ /**
1257
+ * Breakpoint unique identifier.
1258
+ */
1259
+ breakpointId: BreakpointId;
1260
+ /**
1261
+ * Actual breakpoint location.
1262
+ */
1263
+ location: Location;
1264
+ }
1265
+ interface PausedEventDataType {
1266
+ /**
1267
+ * Call stack the virtual machine stopped on.
1268
+ */
1269
+ callFrames: CallFrame[];
1270
+ /**
1271
+ * Pause reason.
1272
+ */
1273
+ reason: string;
1274
+ /**
1275
+ * Object containing break-specific auxiliary properties.
1276
+ */
1277
+ data?: object | undefined;
1278
+ /**
1279
+ * Hit breakpoints IDs
1280
+ */
1281
+ hitBreakpoints?: string[] | undefined;
1282
+ /**
1283
+ * Async stack trace, if any.
1284
+ */
1285
+ asyncStackTrace?: Runtime.StackTrace | undefined;
1286
+ /**
1287
+ * Async stack trace, if any.
1288
+ * @experimental
1289
+ */
1290
+ asyncStackTraceId?: Runtime.StackTraceId | undefined;
1291
+ /**
1292
+ * Just scheduled async call will have this stack trace as parent stack during async execution. This field is available only after <code>Debugger.stepInto</code> call with <code>breakOnAsynCall</code> flag.
1293
+ * @experimental
1294
+ */
1295
+ asyncCallStackTraceId?: Runtime.StackTraceId | undefined;
1296
+ }
1297
+ }
1298
+ namespace Console {
1299
+ /**
1300
+ * Console message.
1301
+ */
1302
+ interface ConsoleMessage {
1303
+ /**
1304
+ * Message source.
1305
+ */
1306
+ source: string;
1307
+ /**
1308
+ * Message severity.
1309
+ */
1310
+ level: string;
1311
+ /**
1312
+ * Message text.
1313
+ */
1314
+ text: string;
1315
+ /**
1316
+ * URL of the message origin.
1317
+ */
1318
+ url?: string | undefined;
1319
+ /**
1320
+ * Line number in the resource that generated this message (1-based).
1321
+ */
1322
+ line?: number | undefined;
1323
+ /**
1324
+ * Column number in the resource that generated this message (1-based).
1325
+ */
1326
+ column?: number | undefined;
1327
+ }
1328
+ interface MessageAddedEventDataType {
1329
+ /**
1330
+ * Console message that has been added.
1331
+ */
1332
+ message: ConsoleMessage;
1333
+ }
1334
+ }
1335
+ namespace Profiler {
1336
+ /**
1337
+ * Profile node. Holds callsite information, execution statistics and child nodes.
1338
+ */
1339
+ interface ProfileNode {
1340
+ /**
1341
+ * Unique id of the node.
1342
+ */
1343
+ id: number;
1344
+ /**
1345
+ * Function location.
1346
+ */
1347
+ callFrame: Runtime.CallFrame;
1348
+ /**
1349
+ * Number of samples where this node was on top of the call stack.
1350
+ */
1351
+ hitCount?: number | undefined;
1352
+ /**
1353
+ * Child node ids.
1354
+ */
1355
+ children?: number[] | undefined;
1356
+ /**
1357
+ * The reason of being not optimized. The function may be deoptimized or marked as don't optimize.
1358
+ */
1359
+ deoptReason?: string | undefined;
1360
+ /**
1361
+ * An array of source position ticks.
1362
+ */
1363
+ positionTicks?: PositionTickInfo[] | undefined;
1364
+ }
1365
+ /**
1366
+ * Profile.
1367
+ */
1368
+ interface Profile {
1369
+ /**
1370
+ * The list of profile nodes. First item is the root node.
1371
+ */
1372
+ nodes: ProfileNode[];
1373
+ /**
1374
+ * Profiling start timestamp in microseconds.
1375
+ */
1376
+ startTime: number;
1377
+ /**
1378
+ * Profiling end timestamp in microseconds.
1379
+ */
1380
+ endTime: number;
1381
+ /**
1382
+ * Ids of samples top nodes.
1383
+ */
1384
+ samples?: number[] | undefined;
1385
+ /**
1386
+ * Time intervals between adjacent samples in microseconds. The first delta is relative to the profile startTime.
1387
+ */
1388
+ timeDeltas?: number[] | undefined;
1389
+ }
1390
+ /**
1391
+ * Specifies a number of samples attributed to a certain source position.
1392
+ */
1393
+ interface PositionTickInfo {
1394
+ /**
1395
+ * Source line number (1-based).
1396
+ */
1397
+ line: number;
1398
+ /**
1399
+ * Number of samples attributed to the source line.
1400
+ */
1401
+ ticks: number;
1402
+ }
1403
+ /**
1404
+ * Coverage data for a source range.
1405
+ */
1406
+ interface CoverageRange {
1407
+ /**
1408
+ * JavaScript script source offset for the range start.
1409
+ */
1410
+ startOffset: number;
1411
+ /**
1412
+ * JavaScript script source offset for the range end.
1413
+ */
1414
+ endOffset: number;
1415
+ /**
1416
+ * Collected execution count of the source range.
1417
+ */
1418
+ count: number;
1419
+ }
1420
+ /**
1421
+ * Coverage data for a JavaScript function.
1422
+ */
1423
+ interface FunctionCoverage {
1424
+ /**
1425
+ * JavaScript function name.
1426
+ */
1427
+ functionName: string;
1428
+ /**
1429
+ * Source ranges inside the function with coverage data.
1430
+ */
1431
+ ranges: CoverageRange[];
1432
+ /**
1433
+ * Whether coverage data for this function has block granularity.
1434
+ */
1435
+ isBlockCoverage: boolean;
1436
+ }
1437
+ /**
1438
+ * Coverage data for a JavaScript script.
1439
+ */
1440
+ interface ScriptCoverage {
1441
+ /**
1442
+ * JavaScript script id.
1443
+ */
1444
+ scriptId: Runtime.ScriptId;
1445
+ /**
1446
+ * JavaScript script name or url.
1447
+ */
1448
+ url: string;
1449
+ /**
1450
+ * Functions contained in the script that has coverage data.
1451
+ */
1452
+ functions: FunctionCoverage[];
1453
+ }
1454
+ interface SetSamplingIntervalParameterType {
1455
+ /**
1456
+ * New sampling interval in microseconds.
1457
+ */
1458
+ interval: number;
1459
+ }
1460
+ interface StartPreciseCoverageParameterType {
1461
+ /**
1462
+ * Collect accurate call counts beyond simple 'covered' or 'not covered'.
1463
+ */
1464
+ callCount?: boolean | undefined;
1465
+ /**
1466
+ * Collect block-based coverage.
1467
+ */
1468
+ detailed?: boolean | undefined;
1469
+ }
1470
+ interface StopReturnType {
1471
+ /**
1472
+ * Recorded profile.
1473
+ */
1474
+ profile: Profile;
1475
+ }
1476
+ interface TakePreciseCoverageReturnType {
1477
+ /**
1478
+ * Coverage data for the current isolate.
1479
+ */
1480
+ result: ScriptCoverage[];
1481
+ }
1482
+ interface GetBestEffortCoverageReturnType {
1483
+ /**
1484
+ * Coverage data for the current isolate.
1485
+ */
1486
+ result: ScriptCoverage[];
1487
+ }
1488
+ interface ConsoleProfileStartedEventDataType {
1489
+ id: string;
1490
+ /**
1491
+ * Location of console.profile().
1492
+ */
1493
+ location: Debugger.Location;
1494
+ /**
1495
+ * Profile title passed as an argument to console.profile().
1496
+ */
1497
+ title?: string | undefined;
1498
+ }
1499
+ interface ConsoleProfileFinishedEventDataType {
1500
+ id: string;
1501
+ /**
1502
+ * Location of console.profileEnd().
1503
+ */
1504
+ location: Debugger.Location;
1505
+ profile: Profile;
1506
+ /**
1507
+ * Profile title passed as an argument to console.profile().
1508
+ */
1509
+ title?: string | undefined;
1510
+ }
1511
+ }
1512
+ namespace HeapProfiler {
1513
+ /**
1514
+ * Heap snapshot object id.
1515
+ */
1516
+ type HeapSnapshotObjectId = string;
1517
+ /**
1518
+ * Sampling Heap Profile node. Holds callsite information, allocation statistics and child nodes.
1519
+ */
1520
+ interface SamplingHeapProfileNode {
1521
+ /**
1522
+ * Function location.
1523
+ */
1524
+ callFrame: Runtime.CallFrame;
1525
+ /**
1526
+ * Allocations size in bytes for the node excluding children.
1527
+ */
1528
+ selfSize: number;
1529
+ /**
1530
+ * Child nodes.
1531
+ */
1532
+ children: SamplingHeapProfileNode[];
1533
+ }
1534
+ /**
1535
+ * Profile.
1536
+ */
1537
+ interface SamplingHeapProfile {
1538
+ head: SamplingHeapProfileNode;
1539
+ }
1540
+ interface StartTrackingHeapObjectsParameterType {
1541
+ trackAllocations?: boolean | undefined;
1542
+ }
1543
+ interface StopTrackingHeapObjectsParameterType {
1544
+ /**
1545
+ * If true 'reportHeapSnapshotProgress' events will be generated while snapshot is being taken when the tracking is stopped.
1546
+ */
1547
+ reportProgress?: boolean | undefined;
1548
+ }
1549
+ interface TakeHeapSnapshotParameterType {
1550
+ /**
1551
+ * If true 'reportHeapSnapshotProgress' events will be generated while snapshot is being taken.
1552
+ */
1553
+ reportProgress?: boolean | undefined;
1554
+ }
1555
+ interface GetObjectByHeapObjectIdParameterType {
1556
+ objectId: HeapSnapshotObjectId;
1557
+ /**
1558
+ * Symbolic group name that can be used to release multiple objects.
1559
+ */
1560
+ objectGroup?: string | undefined;
1561
+ }
1562
+ interface AddInspectedHeapObjectParameterType {
1563
+ /**
1564
+ * Heap snapshot object id to be accessible by means of $x command line API.
1565
+ */
1566
+ heapObjectId: HeapSnapshotObjectId;
1567
+ }
1568
+ interface GetHeapObjectIdParameterType {
1569
+ /**
1570
+ * Identifier of the object to get heap object id for.
1571
+ */
1572
+ objectId: Runtime.RemoteObjectId;
1573
+ }
1574
+ interface StartSamplingParameterType {
1575
+ /**
1576
+ * Average sample interval in bytes. Poisson distribution is used for the intervals. The default value is 32768 bytes.
1577
+ */
1578
+ samplingInterval?: number | undefined;
1579
+ }
1580
+ interface GetObjectByHeapObjectIdReturnType {
1581
+ /**
1582
+ * Evaluation result.
1583
+ */
1584
+ result: Runtime.RemoteObject;
1585
+ }
1586
+ interface GetHeapObjectIdReturnType {
1587
+ /**
1588
+ * Id of the heap snapshot object corresponding to the passed remote object id.
1589
+ */
1590
+ heapSnapshotObjectId: HeapSnapshotObjectId;
1591
+ }
1592
+ interface StopSamplingReturnType {
1593
+ /**
1594
+ * Recorded sampling heap profile.
1595
+ */
1596
+ profile: SamplingHeapProfile;
1597
+ }
1598
+ interface GetSamplingProfileReturnType {
1599
+ /**
1600
+ * Return the sampling profile being collected.
1601
+ */
1602
+ profile: SamplingHeapProfile;
1603
+ }
1604
+ interface AddHeapSnapshotChunkEventDataType {
1605
+ chunk: string;
1606
+ }
1607
+ interface ReportHeapSnapshotProgressEventDataType {
1608
+ done: number;
1609
+ total: number;
1610
+ finished?: boolean | undefined;
1611
+ }
1612
+ interface LastSeenObjectIdEventDataType {
1613
+ lastSeenObjectId: number;
1614
+ timestamp: number;
1615
+ }
1616
+ interface HeapStatsUpdateEventDataType {
1617
+ /**
1618
+ * An array of triplets. Each triplet describes a fragment. The first integer is the fragment index, the second integer is a total count of objects for the fragment, the third integer is a total size of the objects for the fragment.
1619
+ */
1620
+ statsUpdate: number[];
1621
+ }
1622
+ }
1623
+ namespace IO {
1624
+ type StreamHandle = string;
1625
+ interface ReadParameterType {
1626
+ /**
1627
+ * Handle of the stream to read.
1628
+ */
1629
+ handle: StreamHandle;
1630
+ /**
1631
+ * Seek to the specified offset before reading (if not specified, proceed with offset
1632
+ * following the last read). Some types of streams may only support sequential reads.
1633
+ */
1634
+ offset?: number | undefined;
1635
+ /**
1636
+ * Maximum number of bytes to read (left upon the agent discretion if not specified).
1637
+ */
1638
+ size?: number | undefined;
1639
+ }
1640
+ interface CloseParameterType {
1641
+ /**
1642
+ * Handle of the stream to close.
1643
+ */
1644
+ handle: StreamHandle;
1645
+ }
1646
+ interface ReadReturnType {
1647
+ /**
1648
+ * Data that were read.
1649
+ */
1650
+ data: string;
1651
+ /**
1652
+ * Set if the end-of-file condition occurred while reading.
1653
+ */
1654
+ eof: boolean;
1655
+ }
1656
+ }
1657
+ namespace Network {
1658
+ /**
1659
+ * Resource type as it was perceived by the rendering engine.
1660
+ */
1661
+ type ResourceType = string;
1662
+ /**
1663
+ * Unique request identifier.
1664
+ */
1665
+ type RequestId = string;
1666
+ /**
1667
+ * UTC time in seconds, counted from January 1, 1970.
1668
+ */
1669
+ type TimeSinceEpoch = number;
1670
+ /**
1671
+ * Monotonically increasing time in seconds since an arbitrary point in the past.
1672
+ */
1673
+ type MonotonicTime = number;
1674
+ /**
1675
+ * Information about the request initiator.
1676
+ */
1677
+ interface Initiator {
1678
+ /**
1679
+ * Type of this initiator.
1680
+ */
1681
+ type: string;
1682
+ /**
1683
+ * Initiator JavaScript stack trace, set for Script only.
1684
+ * Requires the Debugger domain to be enabled.
1685
+ */
1686
+ stack?: Runtime.StackTrace | undefined;
1687
+ /**
1688
+ * Initiator URL, set for Parser type or for Script type (when script is importing module) or for SignedExchange type.
1689
+ */
1690
+ url?: string | undefined;
1691
+ /**
1692
+ * Initiator line number, set for Parser type or for Script type (when script is importing
1693
+ * module) (0-based).
1694
+ */
1695
+ lineNumber?: number | undefined;
1696
+ /**
1697
+ * Initiator column number, set for Parser type or for Script type (when script is importing
1698
+ * module) (0-based).
1699
+ */
1700
+ columnNumber?: number | undefined;
1701
+ /**
1702
+ * Set if another request triggered this request (e.g. preflight).
1703
+ */
1704
+ requestId?: RequestId | undefined;
1705
+ }
1706
+ /**
1707
+ * HTTP request data.
1708
+ */
1709
+ interface Request {
1710
+ url: string;
1711
+ method: string;
1712
+ headers: Headers;
1713
+ hasPostData: boolean;
1714
+ }
1715
+ /**
1716
+ * HTTP response data.
1717
+ */
1718
+ interface Response {
1719
+ url: string;
1720
+ status: number;
1721
+ statusText: string;
1722
+ headers: Headers;
1723
+ mimeType: string;
1724
+ charset: string;
1725
+ }
1726
+ /**
1727
+ * Request / response headers as keys / values of JSON object.
1728
+ */
1729
+ interface Headers {
1730
+ }
1731
+ interface LoadNetworkResourcePageResult {
1732
+ success: boolean;
1733
+ stream?: IO.StreamHandle | undefined;
1734
+ }
1735
+ /**
1736
+ * WebSocket response data.
1737
+ */
1738
+ interface WebSocketResponse {
1739
+ /**
1740
+ * HTTP response status code.
1741
+ */
1742
+ status: number;
1743
+ /**
1744
+ * HTTP response status text.
1745
+ */
1746
+ statusText: string;
1747
+ /**
1748
+ * HTTP response headers.
1749
+ */
1750
+ headers: Headers;
1751
+ }
1752
+ interface EnableParameterType {
1753
+ /**
1754
+ * Buffer size in bytes to use when preserving network payloads (XHRs, etc).
1755
+ * @experimental
1756
+ */
1757
+ maxTotalBufferSize?: number | undefined;
1758
+ /**
1759
+ * Per-resource buffer size in bytes to use when preserving network payloads (XHRs, etc).
1760
+ * @experimental
1761
+ */
1762
+ maxResourceBufferSize?: number | undefined;
1763
+ }
1764
+ interface GetRequestPostDataParameterType {
1765
+ /**
1766
+ * Identifier of the network request to get content for.
1767
+ */
1768
+ requestId: RequestId;
1769
+ }
1770
+ interface GetResponseBodyParameterType {
1771
+ /**
1772
+ * Identifier of the network request to get content for.
1773
+ */
1774
+ requestId: RequestId;
1775
+ }
1776
+ interface StreamResourceContentParameterType {
1777
+ /**
1778
+ * Identifier of the request to stream.
1779
+ */
1780
+ requestId: RequestId;
1781
+ }
1782
+ interface LoadNetworkResourceParameterType {
1783
+ /**
1784
+ * URL of the resource to get content for.
1785
+ */
1786
+ url: string;
1787
+ }
1788
+ interface GetRequestPostDataReturnType {
1789
+ /**
1790
+ * Request body string, omitting files from multipart requests
1791
+ */
1792
+ postData: string;
1793
+ }
1794
+ interface GetResponseBodyReturnType {
1795
+ /**
1796
+ * Response body.
1797
+ */
1798
+ body: string;
1799
+ /**
1800
+ * True, if content was sent as base64.
1801
+ */
1802
+ base64Encoded: boolean;
1803
+ }
1804
+ interface StreamResourceContentReturnType {
1805
+ /**
1806
+ * Data that has been buffered until streaming is enabled.
1807
+ */
1808
+ bufferedData: string;
1809
+ }
1810
+ interface LoadNetworkResourceReturnType {
1811
+ resource: LoadNetworkResourcePageResult;
1812
+ }
1813
+ interface RequestWillBeSentEventDataType {
1814
+ /**
1815
+ * Request identifier.
1816
+ */
1817
+ requestId: RequestId;
1818
+ /**
1819
+ * Request data.
1820
+ */
1821
+ request: Request;
1822
+ /**
1823
+ * Request initiator.
1824
+ */
1825
+ initiator: Initiator;
1826
+ /**
1827
+ * Timestamp.
1828
+ */
1829
+ timestamp: MonotonicTime;
1830
+ /**
1831
+ * Timestamp.
1832
+ */
1833
+ wallTime: TimeSinceEpoch;
1834
+ }
1835
+ interface ResponseReceivedEventDataType {
1836
+ /**
1837
+ * Request identifier.
1838
+ */
1839
+ requestId: RequestId;
1840
+ /**
1841
+ * Timestamp.
1842
+ */
1843
+ timestamp: MonotonicTime;
1844
+ /**
1845
+ * Resource type.
1846
+ */
1847
+ type: ResourceType;
1848
+ /**
1849
+ * Response data.
1850
+ */
1851
+ response: Response;
1852
+ }
1853
+ interface LoadingFailedEventDataType {
1854
+ /**
1855
+ * Request identifier.
1856
+ */
1857
+ requestId: RequestId;
1858
+ /**
1859
+ * Timestamp.
1860
+ */
1861
+ timestamp: MonotonicTime;
1862
+ /**
1863
+ * Resource type.
1864
+ */
1865
+ type: ResourceType;
1866
+ /**
1867
+ * Error message.
1868
+ */
1869
+ errorText: string;
1870
+ }
1871
+ interface LoadingFinishedEventDataType {
1872
+ /**
1873
+ * Request identifier.
1874
+ */
1875
+ requestId: RequestId;
1876
+ /**
1877
+ * Timestamp.
1878
+ */
1879
+ timestamp: MonotonicTime;
1880
+ }
1881
+ interface DataReceivedEventDataType {
1882
+ /**
1883
+ * Request identifier.
1884
+ */
1885
+ requestId: RequestId;
1886
+ /**
1887
+ * Timestamp.
1888
+ */
1889
+ timestamp: MonotonicTime;
1890
+ /**
1891
+ * Data chunk length.
1892
+ */
1893
+ dataLength: number;
1894
+ /**
1895
+ * Actual bytes received (might be less than dataLength for compressed encodings).
1896
+ */
1897
+ encodedDataLength: number;
1898
+ /**
1899
+ * Data that was received.
1900
+ * @experimental
1901
+ */
1902
+ data?: string | undefined;
1903
+ }
1904
+ interface WebSocketCreatedEventDataType {
1905
+ /**
1906
+ * Request identifier.
1907
+ */
1908
+ requestId: RequestId;
1909
+ /**
1910
+ * WebSocket request URL.
1911
+ */
1912
+ url: string;
1913
+ /**
1914
+ * Request initiator.
1915
+ */
1916
+ initiator: Initiator;
1917
+ }
1918
+ interface WebSocketClosedEventDataType {
1919
+ /**
1920
+ * Request identifier.
1921
+ */
1922
+ requestId: RequestId;
1923
+ /**
1924
+ * Timestamp.
1925
+ */
1926
+ timestamp: MonotonicTime;
1927
+ }
1928
+ interface WebSocketHandshakeResponseReceivedEventDataType {
1929
+ /**
1930
+ * Request identifier.
1931
+ */
1932
+ requestId: RequestId;
1933
+ /**
1934
+ * Timestamp.
1935
+ */
1936
+ timestamp: MonotonicTime;
1937
+ /**
1938
+ * WebSocket response data.
1939
+ */
1940
+ response: WebSocketResponse;
1941
+ }
1942
+ }
1943
+ namespace NodeRuntime {
1944
+ interface NotifyWhenWaitingForDisconnectParameterType {
1945
+ enabled: boolean;
1946
+ }
1947
+ }
1948
+ namespace NodeTracing {
1949
+ interface TraceConfig {
1950
+ /**
1951
+ * Controls how the trace buffer stores data.
1952
+ */
1953
+ recordMode?: string | undefined;
1954
+ /**
1955
+ * Included category filters.
1956
+ */
1957
+ includedCategories: string[];
1958
+ }
1959
+ interface StartParameterType {
1960
+ traceConfig: TraceConfig;
1961
+ }
1962
+ interface GetCategoriesReturnType {
1963
+ /**
1964
+ * A list of supported tracing categories.
1965
+ */
1966
+ categories: string[];
1967
+ }
1968
+ interface DataCollectedEventDataType {
1969
+ value: object[];
1970
+ }
1971
+ }
1972
+ namespace NodeWorker {
1973
+ type WorkerID = string;
1974
+ /**
1975
+ * Unique identifier of attached debugging session.
1976
+ */
1977
+ type SessionID = string;
1978
+ interface WorkerInfo {
1979
+ workerId: WorkerID;
1980
+ type: string;
1981
+ title: string;
1982
+ url: string;
1983
+ }
1984
+ interface SendMessageToWorkerParameterType {
1985
+ message: string;
1986
+ /**
1987
+ * Identifier of the session.
1988
+ */
1989
+ sessionId: SessionID;
1990
+ }
1991
+ interface EnableParameterType {
1992
+ /**
1993
+ * Whether to new workers should be paused until the frontend sends `Runtime.runIfWaitingForDebugger`
1994
+ * message to run them.
1995
+ */
1996
+ waitForDebuggerOnStart: boolean;
1997
+ }
1998
+ interface DetachParameterType {
1999
+ sessionId: SessionID;
2000
+ }
2001
+ interface AttachedToWorkerEventDataType {
2002
+ /**
2003
+ * Identifier assigned to the session used to send/receive messages.
2004
+ */
2005
+ sessionId: SessionID;
2006
+ workerInfo: WorkerInfo;
2007
+ waitingForDebugger: boolean;
2008
+ }
2009
+ interface DetachedFromWorkerEventDataType {
2010
+ /**
2011
+ * Detached session identifier.
2012
+ */
2013
+ sessionId: SessionID;
2014
+ }
2015
+ interface ReceivedMessageFromWorkerEventDataType {
2016
+ /**
2017
+ * Identifier of a session which sends a message.
2018
+ */
2019
+ sessionId: SessionID;
2020
+ message: string;
2021
+ }
2022
+ }
2023
+ namespace Target {
2024
+ type SessionID = string;
2025
+ type TargetID = string;
2026
+ interface TargetInfo {
2027
+ targetId: TargetID;
2028
+ type: string;
2029
+ title: string;
2030
+ url: string;
2031
+ attached: boolean;
2032
+ canAccessOpener: boolean;
2033
+ }
2034
+ interface SetAutoAttachParameterType {
2035
+ autoAttach: boolean;
2036
+ waitForDebuggerOnStart: boolean;
2037
+ }
2038
+ interface GetTargetsReturnType {
2039
+ targetInfos: TargetInfo[];
2040
+ }
2041
+ interface TargetCreatedEventDataType {
2042
+ targetInfo: TargetInfo;
2043
+ }
2044
+ interface AttachedToTargetEventDataType {
2045
+ sessionId: SessionID;
2046
+ targetInfo: TargetInfo;
2047
+ waitingForDebugger: boolean;
2048
+ }
2049
+ }
2050
+ namespace DOMStorage {
2051
+ type SerializedStorageKey = string;
2052
+ /**
2053
+ * DOM Storage identifier.
2054
+ */
2055
+ interface StorageId {
2056
+ /**
2057
+ * Security origin for the storage.
2058
+ */
2059
+ securityOrigin?: string | undefined;
2060
+ /**
2061
+ * Represents a key by which DOM Storage keys its CachedStorageAreas
2062
+ */
2063
+ storageKey?: SerializedStorageKey | undefined;
2064
+ /**
2065
+ * Whether the storage is local storage (not session storage).
2066
+ */
2067
+ isLocalStorage: boolean;
2068
+ }
2069
+ /**
2070
+ * DOM Storage item.
2071
+ */
2072
+ type Item = string[];
2073
+ interface ClearParameterType {
2074
+ storageId: StorageId;
2075
+ }
2076
+ interface GetDOMStorageItemsParameterType {
2077
+ storageId: StorageId;
2078
+ }
2079
+ interface RemoveDOMStorageItemParameterType {
2080
+ storageId: StorageId;
2081
+ key: string;
2082
+ }
2083
+ interface SetDOMStorageItemParameterType {
2084
+ storageId: StorageId;
2085
+ key: string;
2086
+ value: string;
2087
+ }
2088
+ interface GetDOMStorageItemsReturnType {
2089
+ entries: Item[];
2090
+ }
2091
+ interface DomStorageItemAddedEventDataType {
2092
+ storageId: StorageId;
2093
+ key: string;
2094
+ newValue: string;
2095
+ }
2096
+ interface DomStorageItemRemovedEventDataType {
2097
+ storageId: StorageId;
2098
+ key: string;
2099
+ }
2100
+ interface DomStorageItemUpdatedEventDataType {
2101
+ storageId: StorageId;
2102
+ key: string;
2103
+ oldValue: string;
2104
+ newValue: string;
2105
+ }
2106
+ interface DomStorageItemsClearedEventDataType {
2107
+ storageId: StorageId;
2108
+ }
2109
+ }
2110
+ namespace Storage {
2111
+ type SerializedStorageKey = string;
2112
+ interface GetStorageKeyParameterType {
2113
+ frameId?: string | undefined;
2114
+ }
2115
+ interface GetStorageKeyReturnType {
2116
+ storageKey: SerializedStorageKey;
2117
+ }
2118
+ }
2119
+ interface Session {
2120
+ /**
2121
+ * Posts a message to the inspector back-end. `callback` will be notified when
2122
+ * a response is received. `callback` is a function that accepts two optional
2123
+ * arguments: error and message-specific result.
2124
+ *
2125
+ * ```js
2126
+ * session.post('Runtime.evaluate', { expression: '2 + 2' },
2127
+ * (error, { result }) => console.log(result));
2128
+ * // Output: { type: 'number', value: 4, description: '4' }
2129
+ * ```
2130
+ *
2131
+ * The latest version of the V8 inspector protocol is published on the
2132
+ * [Chrome DevTools Protocol Viewer](https://chromedevtools.github.io/devtools-protocol/v8/).
2133
+ *
2134
+ * Node.js inspector supports all the Chrome DevTools Protocol domains declared
2135
+ * by V8. Chrome DevTools Protocol domain provides an interface for interacting
2136
+ * with one of the runtime agents used to inspect the application state and listen
2137
+ * to the run-time events.
2138
+ */
2139
+ post(method: string, callback?: (err: Error | null, params?: object) => void): void;
2140
+ post(method: string, params?: object, callback?: (err: Error | null, params?: object) => void): void;
2141
+ /**
2142
+ * Returns supported domains.
2143
+ */
2144
+ post(method: "Schema.getDomains", callback?: (err: Error | null, params: Schema.GetDomainsReturnType) => void): void;
2145
+ /**
2146
+ * Evaluates expression on global object.
2147
+ */
2148
+ post(method: "Runtime.evaluate", params?: Runtime.EvaluateParameterType, callback?: (err: Error | null, params: Runtime.EvaluateReturnType) => void): void;
2149
+ post(method: "Runtime.evaluate", callback?: (err: Error | null, params: Runtime.EvaluateReturnType) => void): void;
2150
+ /**
2151
+ * Add handler to promise with given promise object id.
2152
+ */
2153
+ post(method: "Runtime.awaitPromise", params?: Runtime.AwaitPromiseParameterType, callback?: (err: Error | null, params: Runtime.AwaitPromiseReturnType) => void): void;
2154
+ post(method: "Runtime.awaitPromise", callback?: (err: Error | null, params: Runtime.AwaitPromiseReturnType) => void): void;
2155
+ /**
2156
+ * Calls function with given declaration on the given object. Object group of the result is inherited from the target object.
2157
+ */
2158
+ post(method: "Runtime.callFunctionOn", params?: Runtime.CallFunctionOnParameterType, callback?: (err: Error | null, params: Runtime.CallFunctionOnReturnType) => void): void;
2159
+ post(method: "Runtime.callFunctionOn", callback?: (err: Error | null, params: Runtime.CallFunctionOnReturnType) => void): void;
2160
+ /**
2161
+ * Returns properties of a given object. Object group of the result is inherited from the target object.
2162
+ */
2163
+ post(method: "Runtime.getProperties", params?: Runtime.GetPropertiesParameterType, callback?: (err: Error | null, params: Runtime.GetPropertiesReturnType) => void): void;
2164
+ post(method: "Runtime.getProperties", callback?: (err: Error | null, params: Runtime.GetPropertiesReturnType) => void): void;
2165
+ /**
2166
+ * Releases remote object with given id.
2167
+ */
2168
+ post(method: "Runtime.releaseObject", params?: Runtime.ReleaseObjectParameterType, callback?: (err: Error | null) => void): void;
2169
+ post(method: "Runtime.releaseObject", callback?: (err: Error | null) => void): void;
2170
+ /**
2171
+ * Releases all remote objects that belong to a given group.
2172
+ */
2173
+ post(method: "Runtime.releaseObjectGroup", params?: Runtime.ReleaseObjectGroupParameterType, callback?: (err: Error | null) => void): void;
2174
+ post(method: "Runtime.releaseObjectGroup", callback?: (err: Error | null) => void): void;
2175
+ /**
2176
+ * Tells inspected instance to run if it was waiting for debugger to attach.
2177
+ */
2178
+ post(method: "Runtime.runIfWaitingForDebugger", callback?: (err: Error | null) => void): void;
2179
+ /**
2180
+ * Enables reporting of execution contexts creation by means of <code>executionContextCreated</code> event. When the reporting gets enabled the event will be sent immediately for each existing execution context.
2181
+ */
2182
+ post(method: "Runtime.enable", callback?: (err: Error | null) => void): void;
2183
+ /**
2184
+ * Disables reporting of execution contexts creation.
2185
+ */
2186
+ post(method: "Runtime.disable", callback?: (err: Error | null) => void): void;
2187
+ /**
2188
+ * Discards collected exceptions and console API calls.
2189
+ */
2190
+ post(method: "Runtime.discardConsoleEntries", callback?: (err: Error | null) => void): void;
2191
+ /**
2192
+ * @experimental
2193
+ */
2194
+ post(method: "Runtime.setCustomObjectFormatterEnabled", params?: Runtime.SetCustomObjectFormatterEnabledParameterType, callback?: (err: Error | null) => void): void;
2195
+ post(method: "Runtime.setCustomObjectFormatterEnabled", callback?: (err: Error | null) => void): void;
2196
+ /**
2197
+ * Compiles expression.
2198
+ */
2199
+ post(method: "Runtime.compileScript", params?: Runtime.CompileScriptParameterType, callback?: (err: Error | null, params: Runtime.CompileScriptReturnType) => void): void;
2200
+ post(method: "Runtime.compileScript", callback?: (err: Error | null, params: Runtime.CompileScriptReturnType) => void): void;
2201
+ /**
2202
+ * Runs script with given id in a given context.
2203
+ */
2204
+ post(method: "Runtime.runScript", params?: Runtime.RunScriptParameterType, callback?: (err: Error | null, params: Runtime.RunScriptReturnType) => void): void;
2205
+ post(method: "Runtime.runScript", callback?: (err: Error | null, params: Runtime.RunScriptReturnType) => void): void;
2206
+ post(method: "Runtime.queryObjects", params?: Runtime.QueryObjectsParameterType, callback?: (err: Error | null, params: Runtime.QueryObjectsReturnType) => void): void;
2207
+ post(method: "Runtime.queryObjects", callback?: (err: Error | null, params: Runtime.QueryObjectsReturnType) => void): void;
2208
+ /**
2209
+ * Returns all let, const and class variables from global scope.
2210
+ */
2211
+ post(
2212
+ method: "Runtime.globalLexicalScopeNames",
2213
+ params?: Runtime.GlobalLexicalScopeNamesParameterType,
2214
+ callback?: (err: Error | null, params: Runtime.GlobalLexicalScopeNamesReturnType) => void
2215
+ ): void;
2216
+ post(method: "Runtime.globalLexicalScopeNames", callback?: (err: Error | null, params: Runtime.GlobalLexicalScopeNamesReturnType) => void): void;
2217
+ /**
2218
+ * Enables debugger for the given page. Clients should not assume that the debugging has been enabled until the result for this command is received.
2219
+ */
2220
+ post(method: "Debugger.enable", callback?: (err: Error | null, params: Debugger.EnableReturnType) => void): void;
2221
+ /**
2222
+ * Disables debugger for given page.
2223
+ */
2224
+ post(method: "Debugger.disable", callback?: (err: Error | null) => void): void;
2225
+ /**
2226
+ * Activates / deactivates all breakpoints on the page.
2227
+ */
2228
+ post(method: "Debugger.setBreakpointsActive", params?: Debugger.SetBreakpointsActiveParameterType, callback?: (err: Error | null) => void): void;
2229
+ post(method: "Debugger.setBreakpointsActive", callback?: (err: Error | null) => void): void;
2230
+ /**
2231
+ * Makes page not interrupt on any pauses (breakpoint, exception, dom exception etc).
2232
+ */
2233
+ post(method: "Debugger.setSkipAllPauses", params?: Debugger.SetSkipAllPausesParameterType, callback?: (err: Error | null) => void): void;
2234
+ post(method: "Debugger.setSkipAllPauses", callback?: (err: Error | null) => void): void;
2235
+ /**
2236
+ * Sets JavaScript breakpoint at given location specified either by URL or URL regex. Once this command is issued, all existing parsed scripts will have breakpoints resolved and returned in <code>locations</code> property. Further matching script parsing will result in subsequent <code>breakpointResolved</code> events issued. This logical breakpoint will survive page reloads.
2237
+ */
2238
+ post(method: "Debugger.setBreakpointByUrl", params?: Debugger.SetBreakpointByUrlParameterType, callback?: (err: Error | null, params: Debugger.SetBreakpointByUrlReturnType) => void): void;
2239
+ post(method: "Debugger.setBreakpointByUrl", callback?: (err: Error | null, params: Debugger.SetBreakpointByUrlReturnType) => void): void;
2240
+ /**
2241
+ * Sets JavaScript breakpoint at a given location.
2242
+ */
2243
+ post(method: "Debugger.setBreakpoint", params?: Debugger.SetBreakpointParameterType, callback?: (err: Error | null, params: Debugger.SetBreakpointReturnType) => void): void;
2244
+ post(method: "Debugger.setBreakpoint", callback?: (err: Error | null, params: Debugger.SetBreakpointReturnType) => void): void;
2245
+ /**
2246
+ * Removes JavaScript breakpoint.
2247
+ */
2248
+ post(method: "Debugger.removeBreakpoint", params?: Debugger.RemoveBreakpointParameterType, callback?: (err: Error | null) => void): void;
2249
+ post(method: "Debugger.removeBreakpoint", callback?: (err: Error | null) => void): void;
2250
+ /**
2251
+ * Returns possible locations for breakpoint. scriptId in start and end range locations should be the same.
2252
+ */
2253
+ post(
2254
+ method: "Debugger.getPossibleBreakpoints",
2255
+ params?: Debugger.GetPossibleBreakpointsParameterType,
2256
+ callback?: (err: Error | null, params: Debugger.GetPossibleBreakpointsReturnType) => void
2257
+ ): void;
2258
+ post(method: "Debugger.getPossibleBreakpoints", callback?: (err: Error | null, params: Debugger.GetPossibleBreakpointsReturnType) => void): void;
2259
+ /**
2260
+ * Continues execution until specific location is reached.
2261
+ */
2262
+ post(method: "Debugger.continueToLocation", params?: Debugger.ContinueToLocationParameterType, callback?: (err: Error | null) => void): void;
2263
+ post(method: "Debugger.continueToLocation", callback?: (err: Error | null) => void): void;
2264
+ /**
2265
+ * @experimental
2266
+ */
2267
+ post(method: "Debugger.pauseOnAsyncCall", params?: Debugger.PauseOnAsyncCallParameterType, callback?: (err: Error | null) => void): void;
2268
+ post(method: "Debugger.pauseOnAsyncCall", callback?: (err: Error | null) => void): void;
2269
+ /**
2270
+ * Steps over the statement.
2271
+ */
2272
+ post(method: "Debugger.stepOver", callback?: (err: Error | null) => void): void;
2273
+ /**
2274
+ * Steps into the function call.
2275
+ */
2276
+ post(method: "Debugger.stepInto", params?: Debugger.StepIntoParameterType, callback?: (err: Error | null) => void): void;
2277
+ post(method: "Debugger.stepInto", callback?: (err: Error | null) => void): void;
2278
+ /**
2279
+ * Steps out of the function call.
2280
+ */
2281
+ post(method: "Debugger.stepOut", callback?: (err: Error | null) => void): void;
2282
+ /**
2283
+ * Stops on the next JavaScript statement.
2284
+ */
2285
+ post(method: "Debugger.pause", callback?: (err: Error | null) => void): void;
2286
+ /**
2287
+ * This method is deprecated - use Debugger.stepInto with breakOnAsyncCall and Debugger.pauseOnAsyncTask instead. Steps into next scheduled async task if any is scheduled before next pause. Returns success when async task is actually scheduled, returns error if no task were scheduled or another scheduleStepIntoAsync was called.
2288
+ * @experimental
2289
+ */
2290
+ post(method: "Debugger.scheduleStepIntoAsync", callback?: (err: Error | null) => void): void;
2291
+ /**
2292
+ * Resumes JavaScript execution.
2293
+ */
2294
+ post(method: "Debugger.resume", callback?: (err: Error | null) => void): void;
2295
+ /**
2296
+ * Returns stack trace with given <code>stackTraceId</code>.
2297
+ * @experimental
2298
+ */
2299
+ post(method: "Debugger.getStackTrace", params?: Debugger.GetStackTraceParameterType, callback?: (err: Error | null, params: Debugger.GetStackTraceReturnType) => void): void;
2300
+ post(method: "Debugger.getStackTrace", callback?: (err: Error | null, params: Debugger.GetStackTraceReturnType) => void): void;
2301
+ /**
2302
+ * Searches for given string in script content.
2303
+ */
2304
+ post(method: "Debugger.searchInContent", params?: Debugger.SearchInContentParameterType, callback?: (err: Error | null, params: Debugger.SearchInContentReturnType) => void): void;
2305
+ post(method: "Debugger.searchInContent", callback?: (err: Error | null, params: Debugger.SearchInContentReturnType) => void): void;
2306
+ /**
2307
+ * Edits JavaScript source live.
2308
+ */
2309
+ post(method: "Debugger.setScriptSource", params?: Debugger.SetScriptSourceParameterType, callback?: (err: Error | null, params: Debugger.SetScriptSourceReturnType) => void): void;
2310
+ post(method: "Debugger.setScriptSource", callback?: (err: Error | null, params: Debugger.SetScriptSourceReturnType) => void): void;
2311
+ /**
2312
+ * Restarts particular call frame from the beginning.
2313
+ */
2314
+ post(method: "Debugger.restartFrame", params?: Debugger.RestartFrameParameterType, callback?: (err: Error | null, params: Debugger.RestartFrameReturnType) => void): void;
2315
+ post(method: "Debugger.restartFrame", callback?: (err: Error | null, params: Debugger.RestartFrameReturnType) => void): void;
2316
+ /**
2317
+ * Returns source for the script with given id.
2318
+ */
2319
+ post(method: "Debugger.getScriptSource", params?: Debugger.GetScriptSourceParameterType, callback?: (err: Error | null, params: Debugger.GetScriptSourceReturnType) => void): void;
2320
+ post(method: "Debugger.getScriptSource", callback?: (err: Error | null, params: Debugger.GetScriptSourceReturnType) => void): void;
2321
+ /**
2322
+ * Defines pause on exceptions state. Can be set to stop on all exceptions, uncaught exceptions or no exceptions. Initial pause on exceptions state is <code>none</code>.
2323
+ */
2324
+ post(method: "Debugger.setPauseOnExceptions", params?: Debugger.SetPauseOnExceptionsParameterType, callback?: (err: Error | null) => void): void;
2325
+ post(method: "Debugger.setPauseOnExceptions", callback?: (err: Error | null) => void): void;
2326
+ /**
2327
+ * Evaluates expression on a given call frame.
2328
+ */
2329
+ post(method: "Debugger.evaluateOnCallFrame", params?: Debugger.EvaluateOnCallFrameParameterType, callback?: (err: Error | null, params: Debugger.EvaluateOnCallFrameReturnType) => void): void;
2330
+ post(method: "Debugger.evaluateOnCallFrame", callback?: (err: Error | null, params: Debugger.EvaluateOnCallFrameReturnType) => void): void;
2331
+ /**
2332
+ * Changes value of variable in a callframe. Object-based scopes are not supported and must be mutated manually.
2333
+ */
2334
+ post(method: "Debugger.setVariableValue", params?: Debugger.SetVariableValueParameterType, callback?: (err: Error | null) => void): void;
2335
+ post(method: "Debugger.setVariableValue", callback?: (err: Error | null) => void): void;
2336
+ /**
2337
+ * Changes return value in top frame. Available only at return break position.
2338
+ * @experimental
2339
+ */
2340
+ post(method: "Debugger.setReturnValue", params?: Debugger.SetReturnValueParameterType, callback?: (err: Error | null) => void): void;
2341
+ post(method: "Debugger.setReturnValue", callback?: (err: Error | null) => void): void;
2342
+ /**
2343
+ * Enables or disables async call stacks tracking.
2344
+ */
2345
+ post(method: "Debugger.setAsyncCallStackDepth", params?: Debugger.SetAsyncCallStackDepthParameterType, callback?: (err: Error | null) => void): void;
2346
+ post(method: "Debugger.setAsyncCallStackDepth", callback?: (err: Error | null) => void): void;
2347
+ /**
2348
+ * Replace previous blackbox patterns with passed ones. Forces backend to skip stepping/pausing in scripts with url matching one of the patterns. VM will try to leave blackboxed script by performing 'step in' several times, finally resorting to 'step out' if unsuccessful.
2349
+ * @experimental
2350
+ */
2351
+ post(method: "Debugger.setBlackboxPatterns", params?: Debugger.SetBlackboxPatternsParameterType, callback?: (err: Error | null) => void): void;
2352
+ post(method: "Debugger.setBlackboxPatterns", callback?: (err: Error | null) => void): void;
2353
+ /**
2354
+ * Makes backend skip steps in the script in blackboxed ranges. VM will try leave blacklisted scripts by performing 'step in' several times, finally resorting to 'step out' if unsuccessful. Positions array contains positions where blackbox state is changed. First interval isn't blackboxed. Array should be sorted.
2355
+ * @experimental
2356
+ */
2357
+ post(method: "Debugger.setBlackboxedRanges", params?: Debugger.SetBlackboxedRangesParameterType, callback?: (err: Error | null) => void): void;
2358
+ post(method: "Debugger.setBlackboxedRanges", callback?: (err: Error | null) => void): void;
2359
+ /**
2360
+ * Enables console domain, sends the messages collected so far to the client by means of the <code>messageAdded</code> notification.
2361
+ */
2362
+ post(method: "Console.enable", callback?: (err: Error | null) => void): void;
2363
+ /**
2364
+ * Disables console domain, prevents further console messages from being reported to the client.
2365
+ */
2366
+ post(method: "Console.disable", callback?: (err: Error | null) => void): void;
2367
+ /**
2368
+ * Does nothing.
2369
+ */
2370
+ post(method: "Console.clearMessages", callback?: (err: Error | null) => void): void;
2371
+ post(method: "Profiler.enable", callback?: (err: Error | null) => void): void;
2372
+ post(method: "Profiler.disable", callback?: (err: Error | null) => void): void;
2373
+ /**
2374
+ * Changes CPU profiler sampling interval. Must be called before CPU profiles recording started.
2375
+ */
2376
+ post(method: "Profiler.setSamplingInterval", params?: Profiler.SetSamplingIntervalParameterType, callback?: (err: Error | null) => void): void;
2377
+ post(method: "Profiler.setSamplingInterval", callback?: (err: Error | null) => void): void;
2378
+ post(method: "Profiler.start", callback?: (err: Error | null) => void): void;
2379
+ post(method: "Profiler.stop", callback?: (err: Error | null, params: Profiler.StopReturnType) => void): void;
2380
+ /**
2381
+ * Enable precise code coverage. Coverage data for JavaScript executed before enabling precise code coverage may be incomplete. Enabling prevents running optimized code and resets execution counters.
2382
+ */
2383
+ post(method: "Profiler.startPreciseCoverage", params?: Profiler.StartPreciseCoverageParameterType, callback?: (err: Error | null) => void): void;
2384
+ post(method: "Profiler.startPreciseCoverage", callback?: (err: Error | null) => void): void;
2385
+ /**
2386
+ * Disable precise code coverage. Disabling releases unnecessary execution count records and allows executing optimized code.
2387
+ */
2388
+ post(method: "Profiler.stopPreciseCoverage", callback?: (err: Error | null) => void): void;
2389
+ /**
2390
+ * Collect coverage data for the current isolate, and resets execution counters. Precise code coverage needs to have started.
2391
+ */
2392
+ post(method: "Profiler.takePreciseCoverage", callback?: (err: Error | null, params: Profiler.TakePreciseCoverageReturnType) => void): void;
2393
+ /**
2394
+ * Collect coverage data for the current isolate. The coverage data may be incomplete due to garbage collection.
2395
+ */
2396
+ post(method: "Profiler.getBestEffortCoverage", callback?: (err: Error | null, params: Profiler.GetBestEffortCoverageReturnType) => void): void;
2397
+ post(method: "HeapProfiler.enable", callback?: (err: Error | null) => void): void;
2398
+ post(method: "HeapProfiler.disable", callback?: (err: Error | null) => void): void;
2399
+ post(method: "HeapProfiler.startTrackingHeapObjects", params?: HeapProfiler.StartTrackingHeapObjectsParameterType, callback?: (err: Error | null) => void): void;
2400
+ post(method: "HeapProfiler.startTrackingHeapObjects", callback?: (err: Error | null) => void): void;
2401
+ post(method: "HeapProfiler.stopTrackingHeapObjects", params?: HeapProfiler.StopTrackingHeapObjectsParameterType, callback?: (err: Error | null) => void): void;
2402
+ post(method: "HeapProfiler.stopTrackingHeapObjects", callback?: (err: Error | null) => void): void;
2403
+ post(method: "HeapProfiler.takeHeapSnapshot", params?: HeapProfiler.TakeHeapSnapshotParameterType, callback?: (err: Error | null) => void): void;
2404
+ post(method: "HeapProfiler.takeHeapSnapshot", callback?: (err: Error | null) => void): void;
2405
+ post(method: "HeapProfiler.collectGarbage", callback?: (err: Error | null) => void): void;
2406
+ post(
2407
+ method: "HeapProfiler.getObjectByHeapObjectId",
2408
+ params?: HeapProfiler.GetObjectByHeapObjectIdParameterType,
2409
+ callback?: (err: Error | null, params: HeapProfiler.GetObjectByHeapObjectIdReturnType) => void
2410
+ ): void;
2411
+ post(method: "HeapProfiler.getObjectByHeapObjectId", callback?: (err: Error | null, params: HeapProfiler.GetObjectByHeapObjectIdReturnType) => void): void;
2412
+ /**
2413
+ * Enables console to refer to the node with given id via $x (see Command Line API for more details $x functions).
2414
+ */
2415
+ post(method: "HeapProfiler.addInspectedHeapObject", params?: HeapProfiler.AddInspectedHeapObjectParameterType, callback?: (err: Error | null) => void): void;
2416
+ post(method: "HeapProfiler.addInspectedHeapObject", callback?: (err: Error | null) => void): void;
2417
+ post(method: "HeapProfiler.getHeapObjectId", params?: HeapProfiler.GetHeapObjectIdParameterType, callback?: (err: Error | null, params: HeapProfiler.GetHeapObjectIdReturnType) => void): void;
2418
+ post(method: "HeapProfiler.getHeapObjectId", callback?: (err: Error | null, params: HeapProfiler.GetHeapObjectIdReturnType) => void): void;
2419
+ post(method: "HeapProfiler.startSampling", params?: HeapProfiler.StartSamplingParameterType, callback?: (err: Error | null) => void): void;
2420
+ post(method: "HeapProfiler.startSampling", callback?: (err: Error | null) => void): void;
2421
+ post(method: "HeapProfiler.stopSampling", callback?: (err: Error | null, params: HeapProfiler.StopSamplingReturnType) => void): void;
2422
+ post(method: "HeapProfiler.getSamplingProfile", callback?: (err: Error | null, params: HeapProfiler.GetSamplingProfileReturnType) => void): void;
2423
+ /**
2424
+ * Read a chunk of the stream
2425
+ */
2426
+ post(method: "IO.read", params?: IO.ReadParameterType, callback?: (err: Error | null, params: IO.ReadReturnType) => void): void;
2427
+ post(method: "IO.read", callback?: (err: Error | null, params: IO.ReadReturnType) => void): void;
2428
+ post(method: "IO.close", params?: IO.CloseParameterType, callback?: (err: Error | null) => void): void;
2429
+ post(method: "IO.close", callback?: (err: Error | null) => void): void;
2430
+ /**
2431
+ * Disables network tracking, prevents network events from being sent to the client.
2432
+ */
2433
+ post(method: "Network.disable", callback?: (err: Error | null) => void): void;
2434
+ /**
2435
+ * Enables network tracking, network events will now be delivered to the client.
2436
+ */
2437
+ post(method: "Network.enable", params?: Network.EnableParameterType, callback?: (err: Error | null) => void): void;
2438
+ post(method: "Network.enable", callback?: (err: Error | null) => void): void;
2439
+ /**
2440
+ * Returns post data sent with the request. Returns an error when no data was sent with the request.
2441
+ */
2442
+ post(method: "Network.getRequestPostData", params?: Network.GetRequestPostDataParameterType, callback?: (err: Error | null, params: Network.GetRequestPostDataReturnType) => void): void;
2443
+ post(method: "Network.getRequestPostData", callback?: (err: Error | null, params: Network.GetRequestPostDataReturnType) => void): void;
2444
+ /**
2445
+ * Returns content served for the given request.
2446
+ */
2447
+ post(method: "Network.getResponseBody", params?: Network.GetResponseBodyParameterType, callback?: (err: Error | null, params: Network.GetResponseBodyReturnType) => void): void;
2448
+ post(method: "Network.getResponseBody", callback?: (err: Error | null, params: Network.GetResponseBodyReturnType) => void): void;
2449
+ /**
2450
+ * Enables streaming of the response for the given requestId.
2451
+ * If enabled, the dataReceived event contains the data that was received during streaming.
2452
+ * @experimental
2453
+ */
2454
+ post(
2455
+ method: "Network.streamResourceContent",
2456
+ params?: Network.StreamResourceContentParameterType,
2457
+ callback?: (err: Error | null, params: Network.StreamResourceContentReturnType) => void
2458
+ ): void;
2459
+ post(method: "Network.streamResourceContent", callback?: (err: Error | null, params: Network.StreamResourceContentReturnType) => void): void;
2460
+ /**
2461
+ * Fetches the resource and returns the content.
2462
+ */
2463
+ post(method: "Network.loadNetworkResource", params?: Network.LoadNetworkResourceParameterType, callback?: (err: Error | null, params: Network.LoadNetworkResourceReturnType) => void): void;
2464
+ post(method: "Network.loadNetworkResource", callback?: (err: Error | null, params: Network.LoadNetworkResourceReturnType) => void): void;
2465
+ /**
2466
+ * Enable the NodeRuntime events except by `NodeRuntime.waitingForDisconnect`.
2467
+ */
2468
+ post(method: "NodeRuntime.enable", callback?: (err: Error | null) => void): void;
2469
+ /**
2470
+ * Disable NodeRuntime events
2471
+ */
2472
+ post(method: "NodeRuntime.disable", callback?: (err: Error | null) => void): void;
2473
+ /**
2474
+ * Enable the `NodeRuntime.waitingForDisconnect`.
2475
+ */
2476
+ post(method: "NodeRuntime.notifyWhenWaitingForDisconnect", params?: NodeRuntime.NotifyWhenWaitingForDisconnectParameterType, callback?: (err: Error | null) => void): void;
2477
+ post(method: "NodeRuntime.notifyWhenWaitingForDisconnect", callback?: (err: Error | null) => void): void;
2478
+ /**
2479
+ * Gets supported tracing categories.
2480
+ */
2481
+ post(method: "NodeTracing.getCategories", callback?: (err: Error | null, params: NodeTracing.GetCategoriesReturnType) => void): void;
2482
+ /**
2483
+ * Start trace events collection.
2484
+ */
2485
+ post(method: "NodeTracing.start", params?: NodeTracing.StartParameterType, callback?: (err: Error | null) => void): void;
2486
+ post(method: "NodeTracing.start", callback?: (err: Error | null) => void): void;
2487
+ /**
2488
+ * Stop trace events collection. Remaining collected events will be sent as a sequence of
2489
+ * dataCollected events followed by tracingComplete event.
2490
+ */
2491
+ post(method: "NodeTracing.stop", callback?: (err: Error | null) => void): void;
2492
+ /**
2493
+ * Sends protocol message over session with given id.
2494
+ */
2495
+ post(method: "NodeWorker.sendMessageToWorker", params?: NodeWorker.SendMessageToWorkerParameterType, callback?: (err: Error | null) => void): void;
2496
+ post(method: "NodeWorker.sendMessageToWorker", callback?: (err: Error | null) => void): void;
2497
+ /**
2498
+ * Instructs the inspector to attach to running workers. Will also attach to new workers
2499
+ * as they start
2500
+ */
2501
+ post(method: "NodeWorker.enable", params?: NodeWorker.EnableParameterType, callback?: (err: Error | null) => void): void;
2502
+ post(method: "NodeWorker.enable", callback?: (err: Error | null) => void): void;
2503
+ /**
2504
+ * Detaches from all running workers and disables attaching to new workers as they are started.
2505
+ */
2506
+ post(method: "NodeWorker.disable", callback?: (err: Error | null) => void): void;
2507
+ /**
2508
+ * Detached from the worker with given sessionId.
2509
+ */
2510
+ post(method: "NodeWorker.detach", params?: NodeWorker.DetachParameterType, callback?: (err: Error | null) => void): void;
2511
+ post(method: "NodeWorker.detach", callback?: (err: Error | null) => void): void;
2512
+ post(method: "Target.getTargets", callback?: (err: Error | null, params: Target.GetTargetsReturnType) => void): void;
2513
+ post(method: "Target.setAutoAttach", params?: Target.SetAutoAttachParameterType, callback?: (err: Error | null) => void): void;
2514
+ post(method: "Target.setAutoAttach", callback?: (err: Error | null) => void): void;
2515
+ post(method: "DOMStorage.clear", params?: DOMStorage.ClearParameterType, callback?: (err: Error | null) => void): void;
2516
+ post(method: "DOMStorage.clear", callback?: (err: Error | null) => void): void;
2517
+ /**
2518
+ * Disables storage tracking, prevents storage events from being sent to the client.
2519
+ */
2520
+ post(method: "DOMStorage.disable", callback?: (err: Error | null) => void): void;
2521
+ /**
2522
+ * Enables storage tracking, storage events will now be delivered to the client.
2523
+ */
2524
+ post(method: "DOMStorage.enable", callback?: (err: Error | null) => void): void;
2525
+ post(
2526
+ method: "DOMStorage.getDOMStorageItems",
2527
+ params?: DOMStorage.GetDOMStorageItemsParameterType,
2528
+ callback?: (err: Error | null, params: DOMStorage.GetDOMStorageItemsReturnType) => void
2529
+ ): void;
2530
+ post(method: "DOMStorage.getDOMStorageItems", callback?: (err: Error | null, params: DOMStorage.GetDOMStorageItemsReturnType) => void): void;
2531
+ post(method: "DOMStorage.removeDOMStorageItem", params?: DOMStorage.RemoveDOMStorageItemParameterType, callback?: (err: Error | null) => void): void;
2532
+ post(method: "DOMStorage.removeDOMStorageItem", callback?: (err: Error | null) => void): void;
2533
+ post(method: "DOMStorage.setDOMStorageItem", params?: DOMStorage.SetDOMStorageItemParameterType, callback?: (err: Error | null) => void): void;
2534
+ post(method: "DOMStorage.setDOMStorageItem", callback?: (err: Error | null) => void): void;
2535
+ /**
2536
+ * @experimental
2537
+ */
2538
+ post(method: "Storage.getStorageKey", params?: Storage.GetStorageKeyParameterType, callback?: (err: Error | null, params: Storage.GetStorageKeyReturnType) => void): void;
2539
+ post(method: "Storage.getStorageKey", callback?: (err: Error | null, params: Storage.GetStorageKeyReturnType) => void): void;
2540
+ addListener(event: string, listener: (...args: any[]) => void): this;
2541
+ /**
2542
+ * Emitted when any notification from the V8 Inspector is received.
2543
+ */
2544
+ addListener(event: "inspectorNotification", listener: (message: InspectorNotification<object>) => void): this;
2545
+ /**
2546
+ * Issued when new execution context is created.
2547
+ */
2548
+ addListener(event: "Runtime.executionContextCreated", listener: (message: InspectorNotification<Runtime.ExecutionContextCreatedEventDataType>) => void): this;
2549
+ /**
2550
+ * Issued when execution context is destroyed.
2551
+ */
2552
+ addListener(event: "Runtime.executionContextDestroyed", listener: (message: InspectorNotification<Runtime.ExecutionContextDestroyedEventDataType>) => void): this;
2553
+ /**
2554
+ * Issued when all executionContexts were cleared in browser
2555
+ */
2556
+ addListener(event: "Runtime.executionContextsCleared", listener: () => void): this;
2557
+ /**
2558
+ * Issued when exception was thrown and unhandled.
2559
+ */
2560
+ addListener(event: "Runtime.exceptionThrown", listener: (message: InspectorNotification<Runtime.ExceptionThrownEventDataType>) => void): this;
2561
+ /**
2562
+ * Issued when unhandled exception was revoked.
2563
+ */
2564
+ addListener(event: "Runtime.exceptionRevoked", listener: (message: InspectorNotification<Runtime.ExceptionRevokedEventDataType>) => void): this;
2565
+ /**
2566
+ * Issued when console API was called.
2567
+ */
2568
+ addListener(event: "Runtime.consoleAPICalled", listener: (message: InspectorNotification<Runtime.ConsoleAPICalledEventDataType>) => void): this;
2569
+ /**
2570
+ * Issued when object should be inspected (for example, as a result of inspect() command line API call).
2571
+ */
2572
+ addListener(event: "Runtime.inspectRequested", listener: (message: InspectorNotification<Runtime.InspectRequestedEventDataType>) => void): this;
2573
+ /**
2574
+ * Fired when virtual machine parses script. This event is also fired for all known and uncollected scripts upon enabling debugger.
2575
+ */
2576
+ addListener(event: "Debugger.scriptParsed", listener: (message: InspectorNotification<Debugger.ScriptParsedEventDataType>) => void): this;
2577
+ /**
2578
+ * Fired when virtual machine fails to parse the script.
2579
+ */
2580
+ addListener(event: "Debugger.scriptFailedToParse", listener: (message: InspectorNotification<Debugger.ScriptFailedToParseEventDataType>) => void): this;
2581
+ /**
2582
+ * Fired when breakpoint is resolved to an actual script and location.
2583
+ */
2584
+ addListener(event: "Debugger.breakpointResolved", listener: (message: InspectorNotification<Debugger.BreakpointResolvedEventDataType>) => void): this;
2585
+ /**
2586
+ * Fired when the virtual machine stopped on breakpoint or exception or any other stop criteria.
2587
+ */
2588
+ addListener(event: "Debugger.paused", listener: (message: InspectorNotification<Debugger.PausedEventDataType>) => void): this;
2589
+ /**
2590
+ * Fired when the virtual machine resumed execution.
2591
+ */
2592
+ addListener(event: "Debugger.resumed", listener: () => void): this;
2593
+ /**
2594
+ * Issued when new console message is added.
2595
+ */
2596
+ addListener(event: "Console.messageAdded", listener: (message: InspectorNotification<Console.MessageAddedEventDataType>) => void): this;
2597
+ /**
2598
+ * Sent when new profile recording is started using console.profile() call.
2599
+ */
2600
+ addListener(event: "Profiler.consoleProfileStarted", listener: (message: InspectorNotification<Profiler.ConsoleProfileStartedEventDataType>) => void): this;
2601
+ addListener(event: "Profiler.consoleProfileFinished", listener: (message: InspectorNotification<Profiler.ConsoleProfileFinishedEventDataType>) => void): this;
2602
+ addListener(event: "HeapProfiler.addHeapSnapshotChunk", listener: (message: InspectorNotification<HeapProfiler.AddHeapSnapshotChunkEventDataType>) => void): this;
2603
+ addListener(event: "HeapProfiler.resetProfiles", listener: () => void): this;
2604
+ addListener(event: "HeapProfiler.reportHeapSnapshotProgress", listener: (message: InspectorNotification<HeapProfiler.ReportHeapSnapshotProgressEventDataType>) => void): this;
2605
+ /**
2606
+ * If heap objects tracking has been started then backend regularly sends a current value for last seen object id and corresponding timestamp. If the were changes in the heap since last event then one or more heapStatsUpdate events will be sent before a new lastSeenObjectId event.
2607
+ */
2608
+ addListener(event: "HeapProfiler.lastSeenObjectId", listener: (message: InspectorNotification<HeapProfiler.LastSeenObjectIdEventDataType>) => void): this;
2609
+ /**
2610
+ * If heap objects tracking has been started then backend may send update for one or more fragments
2611
+ */
2612
+ addListener(event: "HeapProfiler.heapStatsUpdate", listener: (message: InspectorNotification<HeapProfiler.HeapStatsUpdateEventDataType>) => void): this;
2613
+ /**
2614
+ * Fired when page is about to send HTTP request.
2615
+ */
2616
+ addListener(event: "Network.requestWillBeSent", listener: (message: InspectorNotification<Network.RequestWillBeSentEventDataType>) => void): this;
2617
+ /**
2618
+ * Fired when HTTP response is available.
2619
+ */
2620
+ addListener(event: "Network.responseReceived", listener: (message: InspectorNotification<Network.ResponseReceivedEventDataType>) => void): this;
2621
+ addListener(event: "Network.loadingFailed", listener: (message: InspectorNotification<Network.LoadingFailedEventDataType>) => void): this;
2622
+ addListener(event: "Network.loadingFinished", listener: (message: InspectorNotification<Network.LoadingFinishedEventDataType>) => void): this;
2623
+ /**
2624
+ * Fired when data chunk was received over the network.
2625
+ */
2626
+ addListener(event: "Network.dataReceived", listener: (message: InspectorNotification<Network.DataReceivedEventDataType>) => void): this;
2627
+ /**
2628
+ * Fired upon WebSocket creation.
2629
+ */
2630
+ addListener(event: "Network.webSocketCreated", listener: (message: InspectorNotification<Network.WebSocketCreatedEventDataType>) => void): this;
2631
+ /**
2632
+ * Fired when WebSocket is closed.
2633
+ */
2634
+ addListener(event: "Network.webSocketClosed", listener: (message: InspectorNotification<Network.WebSocketClosedEventDataType>) => void): this;
2635
+ /**
2636
+ * Fired when WebSocket handshake response becomes available.
2637
+ */
2638
+ addListener(event: "Network.webSocketHandshakeResponseReceived", listener: (message: InspectorNotification<Network.WebSocketHandshakeResponseReceivedEventDataType>) => void): this;
2639
+ /**
2640
+ * This event is fired instead of `Runtime.executionContextDestroyed` when
2641
+ * enabled.
2642
+ * It is fired when the Node process finished all code execution and is
2643
+ * waiting for all frontends to disconnect.
2644
+ */
2645
+ addListener(event: "NodeRuntime.waitingForDisconnect", listener: () => void): this;
2646
+ /**
2647
+ * This event is fired when the runtime is waiting for the debugger. For
2648
+ * example, when inspector.waitingForDebugger is called
2649
+ */
2650
+ addListener(event: "NodeRuntime.waitingForDebugger", listener: () => void): this;
2651
+ /**
2652
+ * Contains an bucket of collected trace events.
2653
+ */
2654
+ addListener(event: "NodeTracing.dataCollected", listener: (message: InspectorNotification<NodeTracing.DataCollectedEventDataType>) => void): this;
2655
+ /**
2656
+ * Signals that tracing is stopped and there is no trace buffers pending flush, all data were
2657
+ * delivered via dataCollected events.
2658
+ */
2659
+ addListener(event: "NodeTracing.tracingComplete", listener: () => void): this;
2660
+ /**
2661
+ * Issued when attached to a worker.
2662
+ */
2663
+ addListener(event: "NodeWorker.attachedToWorker", listener: (message: InspectorNotification<NodeWorker.AttachedToWorkerEventDataType>) => void): this;
2664
+ /**
2665
+ * Issued when detached from the worker.
2666
+ */
2667
+ addListener(event: "NodeWorker.detachedFromWorker", listener: (message: InspectorNotification<NodeWorker.DetachedFromWorkerEventDataType>) => void): this;
2668
+ /**
2669
+ * Notifies about a new protocol message received from the session
2670
+ * (session ID is provided in attachedToWorker notification).
2671
+ */
2672
+ addListener(event: "NodeWorker.receivedMessageFromWorker", listener: (message: InspectorNotification<NodeWorker.ReceivedMessageFromWorkerEventDataType>) => void): this;
2673
+ addListener(event: "Target.targetCreated", listener: (message: InspectorNotification<Target.TargetCreatedEventDataType>) => void): this;
2674
+ addListener(event: "Target.attachedToTarget", listener: (message: InspectorNotification<Target.AttachedToTargetEventDataType>) => void): this;
2675
+ addListener(event: "DOMStorage.domStorageItemAdded", listener: (message: InspectorNotification<DOMStorage.DomStorageItemAddedEventDataType>) => void): this;
2676
+ addListener(event: "DOMStorage.domStorageItemRemoved", listener: (message: InspectorNotification<DOMStorage.DomStorageItemRemovedEventDataType>) => void): this;
2677
+ addListener(event: "DOMStorage.domStorageItemUpdated", listener: (message: InspectorNotification<DOMStorage.DomStorageItemUpdatedEventDataType>) => void): this;
2678
+ addListener(event: "DOMStorage.domStorageItemsCleared", listener: (message: InspectorNotification<DOMStorage.DomStorageItemsClearedEventDataType>) => void): this;
2679
+ emit(event: string | symbol, ...args: any[]): boolean;
2680
+ emit(event: "inspectorNotification", message: InspectorNotification<object>): boolean;
2681
+ emit(event: "Runtime.executionContextCreated", message: InspectorNotification<Runtime.ExecutionContextCreatedEventDataType>): boolean;
2682
+ emit(event: "Runtime.executionContextDestroyed", message: InspectorNotification<Runtime.ExecutionContextDestroyedEventDataType>): boolean;
2683
+ emit(event: "Runtime.executionContextsCleared"): boolean;
2684
+ emit(event: "Runtime.exceptionThrown", message: InspectorNotification<Runtime.ExceptionThrownEventDataType>): boolean;
2685
+ emit(event: "Runtime.exceptionRevoked", message: InspectorNotification<Runtime.ExceptionRevokedEventDataType>): boolean;
2686
+ emit(event: "Runtime.consoleAPICalled", message: InspectorNotification<Runtime.ConsoleAPICalledEventDataType>): boolean;
2687
+ emit(event: "Runtime.inspectRequested", message: InspectorNotification<Runtime.InspectRequestedEventDataType>): boolean;
2688
+ emit(event: "Debugger.scriptParsed", message: InspectorNotification<Debugger.ScriptParsedEventDataType>): boolean;
2689
+ emit(event: "Debugger.scriptFailedToParse", message: InspectorNotification<Debugger.ScriptFailedToParseEventDataType>): boolean;
2690
+ emit(event: "Debugger.breakpointResolved", message: InspectorNotification<Debugger.BreakpointResolvedEventDataType>): boolean;
2691
+ emit(event: "Debugger.paused", message: InspectorNotification<Debugger.PausedEventDataType>): boolean;
2692
+ emit(event: "Debugger.resumed"): boolean;
2693
+ emit(event: "Console.messageAdded", message: InspectorNotification<Console.MessageAddedEventDataType>): boolean;
2694
+ emit(event: "Profiler.consoleProfileStarted", message: InspectorNotification<Profiler.ConsoleProfileStartedEventDataType>): boolean;
2695
+ emit(event: "Profiler.consoleProfileFinished", message: InspectorNotification<Profiler.ConsoleProfileFinishedEventDataType>): boolean;
2696
+ emit(event: "HeapProfiler.addHeapSnapshotChunk", message: InspectorNotification<HeapProfiler.AddHeapSnapshotChunkEventDataType>): boolean;
2697
+ emit(event: "HeapProfiler.resetProfiles"): boolean;
2698
+ emit(event: "HeapProfiler.reportHeapSnapshotProgress", message: InspectorNotification<HeapProfiler.ReportHeapSnapshotProgressEventDataType>): boolean;
2699
+ emit(event: "HeapProfiler.lastSeenObjectId", message: InspectorNotification<HeapProfiler.LastSeenObjectIdEventDataType>): boolean;
2700
+ emit(event: "HeapProfiler.heapStatsUpdate", message: InspectorNotification<HeapProfiler.HeapStatsUpdateEventDataType>): boolean;
2701
+ emit(event: "Network.requestWillBeSent", message: InspectorNotification<Network.RequestWillBeSentEventDataType>): boolean;
2702
+ emit(event: "Network.responseReceived", message: InspectorNotification<Network.ResponseReceivedEventDataType>): boolean;
2703
+ emit(event: "Network.loadingFailed", message: InspectorNotification<Network.LoadingFailedEventDataType>): boolean;
2704
+ emit(event: "Network.loadingFinished", message: InspectorNotification<Network.LoadingFinishedEventDataType>): boolean;
2705
+ emit(event: "Network.dataReceived", message: InspectorNotification<Network.DataReceivedEventDataType>): boolean;
2706
+ emit(event: "Network.webSocketCreated", message: InspectorNotification<Network.WebSocketCreatedEventDataType>): boolean;
2707
+ emit(event: "Network.webSocketClosed", message: InspectorNotification<Network.WebSocketClosedEventDataType>): boolean;
2708
+ emit(event: "Network.webSocketHandshakeResponseReceived", message: InspectorNotification<Network.WebSocketHandshakeResponseReceivedEventDataType>): boolean;
2709
+ emit(event: "NodeRuntime.waitingForDisconnect"): boolean;
2710
+ emit(event: "NodeRuntime.waitingForDebugger"): boolean;
2711
+ emit(event: "NodeTracing.dataCollected", message: InspectorNotification<NodeTracing.DataCollectedEventDataType>): boolean;
2712
+ emit(event: "NodeTracing.tracingComplete"): boolean;
2713
+ emit(event: "NodeWorker.attachedToWorker", message: InspectorNotification<NodeWorker.AttachedToWorkerEventDataType>): boolean;
2714
+ emit(event: "NodeWorker.detachedFromWorker", message: InspectorNotification<NodeWorker.DetachedFromWorkerEventDataType>): boolean;
2715
+ emit(event: "NodeWorker.receivedMessageFromWorker", message: InspectorNotification<NodeWorker.ReceivedMessageFromWorkerEventDataType>): boolean;
2716
+ emit(event: "Target.targetCreated", message: InspectorNotification<Target.TargetCreatedEventDataType>): boolean;
2717
+ emit(event: "Target.attachedToTarget", message: InspectorNotification<Target.AttachedToTargetEventDataType>): boolean;
2718
+ emit(event: "DOMStorage.domStorageItemAdded", message: InspectorNotification<DOMStorage.DomStorageItemAddedEventDataType>): boolean;
2719
+ emit(event: "DOMStorage.domStorageItemRemoved", message: InspectorNotification<DOMStorage.DomStorageItemRemovedEventDataType>): boolean;
2720
+ emit(event: "DOMStorage.domStorageItemUpdated", message: InspectorNotification<DOMStorage.DomStorageItemUpdatedEventDataType>): boolean;
2721
+ emit(event: "DOMStorage.domStorageItemsCleared", message: InspectorNotification<DOMStorage.DomStorageItemsClearedEventDataType>): boolean;
2722
+ on(event: string, listener: (...args: any[]) => void): this;
2723
+ /**
2724
+ * Emitted when any notification from the V8 Inspector is received.
2725
+ */
2726
+ on(event: "inspectorNotification", listener: (message: InspectorNotification<object>) => void): this;
2727
+ /**
2728
+ * Issued when new execution context is created.
2729
+ */
2730
+ on(event: "Runtime.executionContextCreated", listener: (message: InspectorNotification<Runtime.ExecutionContextCreatedEventDataType>) => void): this;
2731
+ /**
2732
+ * Issued when execution context is destroyed.
2733
+ */
2734
+ on(event: "Runtime.executionContextDestroyed", listener: (message: InspectorNotification<Runtime.ExecutionContextDestroyedEventDataType>) => void): this;
2735
+ /**
2736
+ * Issued when all executionContexts were cleared in browser
2737
+ */
2738
+ on(event: "Runtime.executionContextsCleared", listener: () => void): this;
2739
+ /**
2740
+ * Issued when exception was thrown and unhandled.
2741
+ */
2742
+ on(event: "Runtime.exceptionThrown", listener: (message: InspectorNotification<Runtime.ExceptionThrownEventDataType>) => void): this;
2743
+ /**
2744
+ * Issued when unhandled exception was revoked.
2745
+ */
2746
+ on(event: "Runtime.exceptionRevoked", listener: (message: InspectorNotification<Runtime.ExceptionRevokedEventDataType>) => void): this;
2747
+ /**
2748
+ * Issued when console API was called.
2749
+ */
2750
+ on(event: "Runtime.consoleAPICalled", listener: (message: InspectorNotification<Runtime.ConsoleAPICalledEventDataType>) => void): this;
2751
+ /**
2752
+ * Issued when object should be inspected (for example, as a result of inspect() command line API call).
2753
+ */
2754
+ on(event: "Runtime.inspectRequested", listener: (message: InspectorNotification<Runtime.InspectRequestedEventDataType>) => void): this;
2755
+ /**
2756
+ * Fired when virtual machine parses script. This event is also fired for all known and uncollected scripts upon enabling debugger.
2757
+ */
2758
+ on(event: "Debugger.scriptParsed", listener: (message: InspectorNotification<Debugger.ScriptParsedEventDataType>) => void): this;
2759
+ /**
2760
+ * Fired when virtual machine fails to parse the script.
2761
+ */
2762
+ on(event: "Debugger.scriptFailedToParse", listener: (message: InspectorNotification<Debugger.ScriptFailedToParseEventDataType>) => void): this;
2763
+ /**
2764
+ * Fired when breakpoint is resolved to an actual script and location.
2765
+ */
2766
+ on(event: "Debugger.breakpointResolved", listener: (message: InspectorNotification<Debugger.BreakpointResolvedEventDataType>) => void): this;
2767
+ /**
2768
+ * Fired when the virtual machine stopped on breakpoint or exception or any other stop criteria.
2769
+ */
2770
+ on(event: "Debugger.paused", listener: (message: InspectorNotification<Debugger.PausedEventDataType>) => void): this;
2771
+ /**
2772
+ * Fired when the virtual machine resumed execution.
2773
+ */
2774
+ on(event: "Debugger.resumed", listener: () => void): this;
2775
+ /**
2776
+ * Issued when new console message is added.
2777
+ */
2778
+ on(event: "Console.messageAdded", listener: (message: InspectorNotification<Console.MessageAddedEventDataType>) => void): this;
2779
+ /**
2780
+ * Sent when new profile recording is started using console.profile() call.
2781
+ */
2782
+ on(event: "Profiler.consoleProfileStarted", listener: (message: InspectorNotification<Profiler.ConsoleProfileStartedEventDataType>) => void): this;
2783
+ on(event: "Profiler.consoleProfileFinished", listener: (message: InspectorNotification<Profiler.ConsoleProfileFinishedEventDataType>) => void): this;
2784
+ on(event: "HeapProfiler.addHeapSnapshotChunk", listener: (message: InspectorNotification<HeapProfiler.AddHeapSnapshotChunkEventDataType>) => void): this;
2785
+ on(event: "HeapProfiler.resetProfiles", listener: () => void): this;
2786
+ on(event: "HeapProfiler.reportHeapSnapshotProgress", listener: (message: InspectorNotification<HeapProfiler.ReportHeapSnapshotProgressEventDataType>) => void): this;
2787
+ /**
2788
+ * If heap objects tracking has been started then backend regularly sends a current value for last seen object id and corresponding timestamp. If the were changes in the heap since last event then one or more heapStatsUpdate events will be sent before a new lastSeenObjectId event.
2789
+ */
2790
+ on(event: "HeapProfiler.lastSeenObjectId", listener: (message: InspectorNotification<HeapProfiler.LastSeenObjectIdEventDataType>) => void): this;
2791
+ /**
2792
+ * If heap objects tracking has been started then backend may send update for one or more fragments
2793
+ */
2794
+ on(event: "HeapProfiler.heapStatsUpdate", listener: (message: InspectorNotification<HeapProfiler.HeapStatsUpdateEventDataType>) => void): this;
2795
+ /**
2796
+ * Fired when page is about to send HTTP request.
2797
+ */
2798
+ on(event: "Network.requestWillBeSent", listener: (message: InspectorNotification<Network.RequestWillBeSentEventDataType>) => void): this;
2799
+ /**
2800
+ * Fired when HTTP response is available.
2801
+ */
2802
+ on(event: "Network.responseReceived", listener: (message: InspectorNotification<Network.ResponseReceivedEventDataType>) => void): this;
2803
+ on(event: "Network.loadingFailed", listener: (message: InspectorNotification<Network.LoadingFailedEventDataType>) => void): this;
2804
+ on(event: "Network.loadingFinished", listener: (message: InspectorNotification<Network.LoadingFinishedEventDataType>) => void): this;
2805
+ /**
2806
+ * Fired when data chunk was received over the network.
2807
+ */
2808
+ on(event: "Network.dataReceived", listener: (message: InspectorNotification<Network.DataReceivedEventDataType>) => void): this;
2809
+ /**
2810
+ * Fired upon WebSocket creation.
2811
+ */
2812
+ on(event: "Network.webSocketCreated", listener: (message: InspectorNotification<Network.WebSocketCreatedEventDataType>) => void): this;
2813
+ /**
2814
+ * Fired when WebSocket is closed.
2815
+ */
2816
+ on(event: "Network.webSocketClosed", listener: (message: InspectorNotification<Network.WebSocketClosedEventDataType>) => void): this;
2817
+ /**
2818
+ * Fired when WebSocket handshake response becomes available.
2819
+ */
2820
+ on(event: "Network.webSocketHandshakeResponseReceived", listener: (message: InspectorNotification<Network.WebSocketHandshakeResponseReceivedEventDataType>) => void): this;
2821
+ /**
2822
+ * This event is fired instead of `Runtime.executionContextDestroyed` when
2823
+ * enabled.
2824
+ * It is fired when the Node process finished all code execution and is
2825
+ * waiting for all frontends to disconnect.
2826
+ */
2827
+ on(event: "NodeRuntime.waitingForDisconnect", listener: () => void): this;
2828
+ /**
2829
+ * This event is fired when the runtime is waiting for the debugger. For
2830
+ * example, when inspector.waitingForDebugger is called
2831
+ */
2832
+ on(event: "NodeRuntime.waitingForDebugger", listener: () => void): this;
2833
+ /**
2834
+ * Contains an bucket of collected trace events.
2835
+ */
2836
+ on(event: "NodeTracing.dataCollected", listener: (message: InspectorNotification<NodeTracing.DataCollectedEventDataType>) => void): this;
2837
+ /**
2838
+ * Signals that tracing is stopped and there is no trace buffers pending flush, all data were
2839
+ * delivered via dataCollected events.
2840
+ */
2841
+ on(event: "NodeTracing.tracingComplete", listener: () => void): this;
2842
+ /**
2843
+ * Issued when attached to a worker.
2844
+ */
2845
+ on(event: "NodeWorker.attachedToWorker", listener: (message: InspectorNotification<NodeWorker.AttachedToWorkerEventDataType>) => void): this;
2846
+ /**
2847
+ * Issued when detached from the worker.
2848
+ */
2849
+ on(event: "NodeWorker.detachedFromWorker", listener: (message: InspectorNotification<NodeWorker.DetachedFromWorkerEventDataType>) => void): this;
2850
+ /**
2851
+ * Notifies about a new protocol message received from the session
2852
+ * (session ID is provided in attachedToWorker notification).
2853
+ */
2854
+ on(event: "NodeWorker.receivedMessageFromWorker", listener: (message: InspectorNotification<NodeWorker.ReceivedMessageFromWorkerEventDataType>) => void): this;
2855
+ on(event: "Target.targetCreated", listener: (message: InspectorNotification<Target.TargetCreatedEventDataType>) => void): this;
2856
+ on(event: "Target.attachedToTarget", listener: (message: InspectorNotification<Target.AttachedToTargetEventDataType>) => void): this;
2857
+ on(event: "DOMStorage.domStorageItemAdded", listener: (message: InspectorNotification<DOMStorage.DomStorageItemAddedEventDataType>) => void): this;
2858
+ on(event: "DOMStorage.domStorageItemRemoved", listener: (message: InspectorNotification<DOMStorage.DomStorageItemRemovedEventDataType>) => void): this;
2859
+ on(event: "DOMStorage.domStorageItemUpdated", listener: (message: InspectorNotification<DOMStorage.DomStorageItemUpdatedEventDataType>) => void): this;
2860
+ on(event: "DOMStorage.domStorageItemsCleared", listener: (message: InspectorNotification<DOMStorage.DomStorageItemsClearedEventDataType>) => void): this;
2861
+ once(event: string, listener: (...args: any[]) => void): this;
2862
+ /**
2863
+ * Emitted when any notification from the V8 Inspector is received.
2864
+ */
2865
+ once(event: "inspectorNotification", listener: (message: InspectorNotification<object>) => void): this;
2866
+ /**
2867
+ * Issued when new execution context is created.
2868
+ */
2869
+ once(event: "Runtime.executionContextCreated", listener: (message: InspectorNotification<Runtime.ExecutionContextCreatedEventDataType>) => void): this;
2870
+ /**
2871
+ * Issued when execution context is destroyed.
2872
+ */
2873
+ once(event: "Runtime.executionContextDestroyed", listener: (message: InspectorNotification<Runtime.ExecutionContextDestroyedEventDataType>) => void): this;
2874
+ /**
2875
+ * Issued when all executionContexts were cleared in browser
2876
+ */
2877
+ once(event: "Runtime.executionContextsCleared", listener: () => void): this;
2878
+ /**
2879
+ * Issued when exception was thrown and unhandled.
2880
+ */
2881
+ once(event: "Runtime.exceptionThrown", listener: (message: InspectorNotification<Runtime.ExceptionThrownEventDataType>) => void): this;
2882
+ /**
2883
+ * Issued when unhandled exception was revoked.
2884
+ */
2885
+ once(event: "Runtime.exceptionRevoked", listener: (message: InspectorNotification<Runtime.ExceptionRevokedEventDataType>) => void): this;
2886
+ /**
2887
+ * Issued when console API was called.
2888
+ */
2889
+ once(event: "Runtime.consoleAPICalled", listener: (message: InspectorNotification<Runtime.ConsoleAPICalledEventDataType>) => void): this;
2890
+ /**
2891
+ * Issued when object should be inspected (for example, as a result of inspect() command line API call).
2892
+ */
2893
+ once(event: "Runtime.inspectRequested", listener: (message: InspectorNotification<Runtime.InspectRequestedEventDataType>) => void): this;
2894
+ /**
2895
+ * Fired when virtual machine parses script. This event is also fired for all known and uncollected scripts upon enabling debugger.
2896
+ */
2897
+ once(event: "Debugger.scriptParsed", listener: (message: InspectorNotification<Debugger.ScriptParsedEventDataType>) => void): this;
2898
+ /**
2899
+ * Fired when virtual machine fails to parse the script.
2900
+ */
2901
+ once(event: "Debugger.scriptFailedToParse", listener: (message: InspectorNotification<Debugger.ScriptFailedToParseEventDataType>) => void): this;
2902
+ /**
2903
+ * Fired when breakpoint is resolved to an actual script and location.
2904
+ */
2905
+ once(event: "Debugger.breakpointResolved", listener: (message: InspectorNotification<Debugger.BreakpointResolvedEventDataType>) => void): this;
2906
+ /**
2907
+ * Fired when the virtual machine stopped on breakpoint or exception or any other stop criteria.
2908
+ */
2909
+ once(event: "Debugger.paused", listener: (message: InspectorNotification<Debugger.PausedEventDataType>) => void): this;
2910
+ /**
2911
+ * Fired when the virtual machine resumed execution.
2912
+ */
2913
+ once(event: "Debugger.resumed", listener: () => void): this;
2914
+ /**
2915
+ * Issued when new console message is added.
2916
+ */
2917
+ once(event: "Console.messageAdded", listener: (message: InspectorNotification<Console.MessageAddedEventDataType>) => void): this;
2918
+ /**
2919
+ * Sent when new profile recording is started using console.profile() call.
2920
+ */
2921
+ once(event: "Profiler.consoleProfileStarted", listener: (message: InspectorNotification<Profiler.ConsoleProfileStartedEventDataType>) => void): this;
2922
+ once(event: "Profiler.consoleProfileFinished", listener: (message: InspectorNotification<Profiler.ConsoleProfileFinishedEventDataType>) => void): this;
2923
+ once(event: "HeapProfiler.addHeapSnapshotChunk", listener: (message: InspectorNotification<HeapProfiler.AddHeapSnapshotChunkEventDataType>) => void): this;
2924
+ once(event: "HeapProfiler.resetProfiles", listener: () => void): this;
2925
+ once(event: "HeapProfiler.reportHeapSnapshotProgress", listener: (message: InspectorNotification<HeapProfiler.ReportHeapSnapshotProgressEventDataType>) => void): this;
2926
+ /**
2927
+ * If heap objects tracking has been started then backend regularly sends a current value for last seen object id and corresponding timestamp. If the were changes in the heap since last event then one or more heapStatsUpdate events will be sent before a new lastSeenObjectId event.
2928
+ */
2929
+ once(event: "HeapProfiler.lastSeenObjectId", listener: (message: InspectorNotification<HeapProfiler.LastSeenObjectIdEventDataType>) => void): this;
2930
+ /**
2931
+ * If heap objects tracking has been started then backend may send update for one or more fragments
2932
+ */
2933
+ once(event: "HeapProfiler.heapStatsUpdate", listener: (message: InspectorNotification<HeapProfiler.HeapStatsUpdateEventDataType>) => void): this;
2934
+ /**
2935
+ * Fired when page is about to send HTTP request.
2936
+ */
2937
+ once(event: "Network.requestWillBeSent", listener: (message: InspectorNotification<Network.RequestWillBeSentEventDataType>) => void): this;
2938
+ /**
2939
+ * Fired when HTTP response is available.
2940
+ */
2941
+ once(event: "Network.responseReceived", listener: (message: InspectorNotification<Network.ResponseReceivedEventDataType>) => void): this;
2942
+ once(event: "Network.loadingFailed", listener: (message: InspectorNotification<Network.LoadingFailedEventDataType>) => void): this;
2943
+ once(event: "Network.loadingFinished", listener: (message: InspectorNotification<Network.LoadingFinishedEventDataType>) => void): this;
2944
+ /**
2945
+ * Fired when data chunk was received over the network.
2946
+ */
2947
+ once(event: "Network.dataReceived", listener: (message: InspectorNotification<Network.DataReceivedEventDataType>) => void): this;
2948
+ /**
2949
+ * Fired upon WebSocket creation.
2950
+ */
2951
+ once(event: "Network.webSocketCreated", listener: (message: InspectorNotification<Network.WebSocketCreatedEventDataType>) => void): this;
2952
+ /**
2953
+ * Fired when WebSocket is closed.
2954
+ */
2955
+ once(event: "Network.webSocketClosed", listener: (message: InspectorNotification<Network.WebSocketClosedEventDataType>) => void): this;
2956
+ /**
2957
+ * Fired when WebSocket handshake response becomes available.
2958
+ */
2959
+ once(event: "Network.webSocketHandshakeResponseReceived", listener: (message: InspectorNotification<Network.WebSocketHandshakeResponseReceivedEventDataType>) => void): this;
2960
+ /**
2961
+ * This event is fired instead of `Runtime.executionContextDestroyed` when
2962
+ * enabled.
2963
+ * It is fired when the Node process finished all code execution and is
2964
+ * waiting for all frontends to disconnect.
2965
+ */
2966
+ once(event: "NodeRuntime.waitingForDisconnect", listener: () => void): this;
2967
+ /**
2968
+ * This event is fired when the runtime is waiting for the debugger. For
2969
+ * example, when inspector.waitingForDebugger is called
2970
+ */
2971
+ once(event: "NodeRuntime.waitingForDebugger", listener: () => void): this;
2972
+ /**
2973
+ * Contains an bucket of collected trace events.
2974
+ */
2975
+ once(event: "NodeTracing.dataCollected", listener: (message: InspectorNotification<NodeTracing.DataCollectedEventDataType>) => void): this;
2976
+ /**
2977
+ * Signals that tracing is stopped and there is no trace buffers pending flush, all data were
2978
+ * delivered via dataCollected events.
2979
+ */
2980
+ once(event: "NodeTracing.tracingComplete", listener: () => void): this;
2981
+ /**
2982
+ * Issued when attached to a worker.
2983
+ */
2984
+ once(event: "NodeWorker.attachedToWorker", listener: (message: InspectorNotification<NodeWorker.AttachedToWorkerEventDataType>) => void): this;
2985
+ /**
2986
+ * Issued when detached from the worker.
2987
+ */
2988
+ once(event: "NodeWorker.detachedFromWorker", listener: (message: InspectorNotification<NodeWorker.DetachedFromWorkerEventDataType>) => void): this;
2989
+ /**
2990
+ * Notifies about a new protocol message received from the session
2991
+ * (session ID is provided in attachedToWorker notification).
2992
+ */
2993
+ once(event: "NodeWorker.receivedMessageFromWorker", listener: (message: InspectorNotification<NodeWorker.ReceivedMessageFromWorkerEventDataType>) => void): this;
2994
+ once(event: "Target.targetCreated", listener: (message: InspectorNotification<Target.TargetCreatedEventDataType>) => void): this;
2995
+ once(event: "Target.attachedToTarget", listener: (message: InspectorNotification<Target.AttachedToTargetEventDataType>) => void): this;
2996
+ once(event: "DOMStorage.domStorageItemAdded", listener: (message: InspectorNotification<DOMStorage.DomStorageItemAddedEventDataType>) => void): this;
2997
+ once(event: "DOMStorage.domStorageItemRemoved", listener: (message: InspectorNotification<DOMStorage.DomStorageItemRemovedEventDataType>) => void): this;
2998
+ once(event: "DOMStorage.domStorageItemUpdated", listener: (message: InspectorNotification<DOMStorage.DomStorageItemUpdatedEventDataType>) => void): this;
2999
+ once(event: "DOMStorage.domStorageItemsCleared", listener: (message: InspectorNotification<DOMStorage.DomStorageItemsClearedEventDataType>) => void): this;
3000
+ prependListener(event: string, listener: (...args: any[]) => void): this;
3001
+ /**
3002
+ * Emitted when any notification from the V8 Inspector is received.
3003
+ */
3004
+ prependListener(event: "inspectorNotification", listener: (message: InspectorNotification<object>) => void): this;
3005
+ /**
3006
+ * Issued when new execution context is created.
3007
+ */
3008
+ prependListener(event: "Runtime.executionContextCreated", listener: (message: InspectorNotification<Runtime.ExecutionContextCreatedEventDataType>) => void): this;
3009
+ /**
3010
+ * Issued when execution context is destroyed.
3011
+ */
3012
+ prependListener(event: "Runtime.executionContextDestroyed", listener: (message: InspectorNotification<Runtime.ExecutionContextDestroyedEventDataType>) => void): this;
3013
+ /**
3014
+ * Issued when all executionContexts were cleared in browser
3015
+ */
3016
+ prependListener(event: "Runtime.executionContextsCleared", listener: () => void): this;
3017
+ /**
3018
+ * Issued when exception was thrown and unhandled.
3019
+ */
3020
+ prependListener(event: "Runtime.exceptionThrown", listener: (message: InspectorNotification<Runtime.ExceptionThrownEventDataType>) => void): this;
3021
+ /**
3022
+ * Issued when unhandled exception was revoked.
3023
+ */
3024
+ prependListener(event: "Runtime.exceptionRevoked", listener: (message: InspectorNotification<Runtime.ExceptionRevokedEventDataType>) => void): this;
3025
+ /**
3026
+ * Issued when console API was called.
3027
+ */
3028
+ prependListener(event: "Runtime.consoleAPICalled", listener: (message: InspectorNotification<Runtime.ConsoleAPICalledEventDataType>) => void): this;
3029
+ /**
3030
+ * Issued when object should be inspected (for example, as a result of inspect() command line API call).
3031
+ */
3032
+ prependListener(event: "Runtime.inspectRequested", listener: (message: InspectorNotification<Runtime.InspectRequestedEventDataType>) => void): this;
3033
+ /**
3034
+ * Fired when virtual machine parses script. This event is also fired for all known and uncollected scripts upon enabling debugger.
3035
+ */
3036
+ prependListener(event: "Debugger.scriptParsed", listener: (message: InspectorNotification<Debugger.ScriptParsedEventDataType>) => void): this;
3037
+ /**
3038
+ * Fired when virtual machine fails to parse the script.
3039
+ */
3040
+ prependListener(event: "Debugger.scriptFailedToParse", listener: (message: InspectorNotification<Debugger.ScriptFailedToParseEventDataType>) => void): this;
3041
+ /**
3042
+ * Fired when breakpoint is resolved to an actual script and location.
3043
+ */
3044
+ prependListener(event: "Debugger.breakpointResolved", listener: (message: InspectorNotification<Debugger.BreakpointResolvedEventDataType>) => void): this;
3045
+ /**
3046
+ * Fired when the virtual machine stopped on breakpoint or exception or any other stop criteria.
3047
+ */
3048
+ prependListener(event: "Debugger.paused", listener: (message: InspectorNotification<Debugger.PausedEventDataType>) => void): this;
3049
+ /**
3050
+ * Fired when the virtual machine resumed execution.
3051
+ */
3052
+ prependListener(event: "Debugger.resumed", listener: () => void): this;
3053
+ /**
3054
+ * Issued when new console message is added.
3055
+ */
3056
+ prependListener(event: "Console.messageAdded", listener: (message: InspectorNotification<Console.MessageAddedEventDataType>) => void): this;
3057
+ /**
3058
+ * Sent when new profile recording is started using console.profile() call.
3059
+ */
3060
+ prependListener(event: "Profiler.consoleProfileStarted", listener: (message: InspectorNotification<Profiler.ConsoleProfileStartedEventDataType>) => void): this;
3061
+ prependListener(event: "Profiler.consoleProfileFinished", listener: (message: InspectorNotification<Profiler.ConsoleProfileFinishedEventDataType>) => void): this;
3062
+ prependListener(event: "HeapProfiler.addHeapSnapshotChunk", listener: (message: InspectorNotification<HeapProfiler.AddHeapSnapshotChunkEventDataType>) => void): this;
3063
+ prependListener(event: "HeapProfiler.resetProfiles", listener: () => void): this;
3064
+ prependListener(event: "HeapProfiler.reportHeapSnapshotProgress", listener: (message: InspectorNotification<HeapProfiler.ReportHeapSnapshotProgressEventDataType>) => void): this;
3065
+ /**
3066
+ * If heap objects tracking has been started then backend regularly sends a current value for last seen object id and corresponding timestamp. If the were changes in the heap since last event then one or more heapStatsUpdate events will be sent before a new lastSeenObjectId event.
3067
+ */
3068
+ prependListener(event: "HeapProfiler.lastSeenObjectId", listener: (message: InspectorNotification<HeapProfiler.LastSeenObjectIdEventDataType>) => void): this;
3069
+ /**
3070
+ * If heap objects tracking has been started then backend may send update for one or more fragments
3071
+ */
3072
+ prependListener(event: "HeapProfiler.heapStatsUpdate", listener: (message: InspectorNotification<HeapProfiler.HeapStatsUpdateEventDataType>) => void): this;
3073
+ /**
3074
+ * Fired when page is about to send HTTP request.
3075
+ */
3076
+ prependListener(event: "Network.requestWillBeSent", listener: (message: InspectorNotification<Network.RequestWillBeSentEventDataType>) => void): this;
3077
+ /**
3078
+ * Fired when HTTP response is available.
3079
+ */
3080
+ prependListener(event: "Network.responseReceived", listener: (message: InspectorNotification<Network.ResponseReceivedEventDataType>) => void): this;
3081
+ prependListener(event: "Network.loadingFailed", listener: (message: InspectorNotification<Network.LoadingFailedEventDataType>) => void): this;
3082
+ prependListener(event: "Network.loadingFinished", listener: (message: InspectorNotification<Network.LoadingFinishedEventDataType>) => void): this;
3083
+ /**
3084
+ * Fired when data chunk was received over the network.
3085
+ */
3086
+ prependListener(event: "Network.dataReceived", listener: (message: InspectorNotification<Network.DataReceivedEventDataType>) => void): this;
3087
+ /**
3088
+ * Fired upon WebSocket creation.
3089
+ */
3090
+ prependListener(event: "Network.webSocketCreated", listener: (message: InspectorNotification<Network.WebSocketCreatedEventDataType>) => void): this;
3091
+ /**
3092
+ * Fired when WebSocket is closed.
3093
+ */
3094
+ prependListener(event: "Network.webSocketClosed", listener: (message: InspectorNotification<Network.WebSocketClosedEventDataType>) => void): this;
3095
+ /**
3096
+ * Fired when WebSocket handshake response becomes available.
3097
+ */
3098
+ prependListener(event: "Network.webSocketHandshakeResponseReceived", listener: (message: InspectorNotification<Network.WebSocketHandshakeResponseReceivedEventDataType>) => void): this;
3099
+ /**
3100
+ * This event is fired instead of `Runtime.executionContextDestroyed` when
3101
+ * enabled.
3102
+ * It is fired when the Node process finished all code execution and is
3103
+ * waiting for all frontends to disconnect.
3104
+ */
3105
+ prependListener(event: "NodeRuntime.waitingForDisconnect", listener: () => void): this;
3106
+ /**
3107
+ * This event is fired when the runtime is waiting for the debugger. For
3108
+ * example, when inspector.waitingForDebugger is called
3109
+ */
3110
+ prependListener(event: "NodeRuntime.waitingForDebugger", listener: () => void): this;
3111
+ /**
3112
+ * Contains an bucket of collected trace events.
3113
+ */
3114
+ prependListener(event: "NodeTracing.dataCollected", listener: (message: InspectorNotification<NodeTracing.DataCollectedEventDataType>) => void): this;
3115
+ /**
3116
+ * Signals that tracing is stopped and there is no trace buffers pending flush, all data were
3117
+ * delivered via dataCollected events.
3118
+ */
3119
+ prependListener(event: "NodeTracing.tracingComplete", listener: () => void): this;
3120
+ /**
3121
+ * Issued when attached to a worker.
3122
+ */
3123
+ prependListener(event: "NodeWorker.attachedToWorker", listener: (message: InspectorNotification<NodeWorker.AttachedToWorkerEventDataType>) => void): this;
3124
+ /**
3125
+ * Issued when detached from the worker.
3126
+ */
3127
+ prependListener(event: "NodeWorker.detachedFromWorker", listener: (message: InspectorNotification<NodeWorker.DetachedFromWorkerEventDataType>) => void): this;
3128
+ /**
3129
+ * Notifies about a new protocol message received from the session
3130
+ * (session ID is provided in attachedToWorker notification).
3131
+ */
3132
+ prependListener(event: "NodeWorker.receivedMessageFromWorker", listener: (message: InspectorNotification<NodeWorker.ReceivedMessageFromWorkerEventDataType>) => void): this;
3133
+ prependListener(event: "Target.targetCreated", listener: (message: InspectorNotification<Target.TargetCreatedEventDataType>) => void): this;
3134
+ prependListener(event: "Target.attachedToTarget", listener: (message: InspectorNotification<Target.AttachedToTargetEventDataType>) => void): this;
3135
+ prependListener(event: "DOMStorage.domStorageItemAdded", listener: (message: InspectorNotification<DOMStorage.DomStorageItemAddedEventDataType>) => void): this;
3136
+ prependListener(event: "DOMStorage.domStorageItemRemoved", listener: (message: InspectorNotification<DOMStorage.DomStorageItemRemovedEventDataType>) => void): this;
3137
+ prependListener(event: "DOMStorage.domStorageItemUpdated", listener: (message: InspectorNotification<DOMStorage.DomStorageItemUpdatedEventDataType>) => void): this;
3138
+ prependListener(event: "DOMStorage.domStorageItemsCleared", listener: (message: InspectorNotification<DOMStorage.DomStorageItemsClearedEventDataType>) => void): this;
3139
+ prependOnceListener(event: string, listener: (...args: any[]) => void): this;
3140
+ /**
3141
+ * Emitted when any notification from the V8 Inspector is received.
3142
+ */
3143
+ prependOnceListener(event: "inspectorNotification", listener: (message: InspectorNotification<object>) => void): this;
3144
+ /**
3145
+ * Issued when new execution context is created.
3146
+ */
3147
+ prependOnceListener(event: "Runtime.executionContextCreated", listener: (message: InspectorNotification<Runtime.ExecutionContextCreatedEventDataType>) => void): this;
3148
+ /**
3149
+ * Issued when execution context is destroyed.
3150
+ */
3151
+ prependOnceListener(event: "Runtime.executionContextDestroyed", listener: (message: InspectorNotification<Runtime.ExecutionContextDestroyedEventDataType>) => void): this;
3152
+ /**
3153
+ * Issued when all executionContexts were cleared in browser
3154
+ */
3155
+ prependOnceListener(event: "Runtime.executionContextsCleared", listener: () => void): this;
3156
+ /**
3157
+ * Issued when exception was thrown and unhandled.
3158
+ */
3159
+ prependOnceListener(event: "Runtime.exceptionThrown", listener: (message: InspectorNotification<Runtime.ExceptionThrownEventDataType>) => void): this;
3160
+ /**
3161
+ * Issued when unhandled exception was revoked.
3162
+ */
3163
+ prependOnceListener(event: "Runtime.exceptionRevoked", listener: (message: InspectorNotification<Runtime.ExceptionRevokedEventDataType>) => void): this;
3164
+ /**
3165
+ * Issued when console API was called.
3166
+ */
3167
+ prependOnceListener(event: "Runtime.consoleAPICalled", listener: (message: InspectorNotification<Runtime.ConsoleAPICalledEventDataType>) => void): this;
3168
+ /**
3169
+ * Issued when object should be inspected (for example, as a result of inspect() command line API call).
3170
+ */
3171
+ prependOnceListener(event: "Runtime.inspectRequested", listener: (message: InspectorNotification<Runtime.InspectRequestedEventDataType>) => void): this;
3172
+ /**
3173
+ * Fired when virtual machine parses script. This event is also fired for all known and uncollected scripts upon enabling debugger.
3174
+ */
3175
+ prependOnceListener(event: "Debugger.scriptParsed", listener: (message: InspectorNotification<Debugger.ScriptParsedEventDataType>) => void): this;
3176
+ /**
3177
+ * Fired when virtual machine fails to parse the script.
3178
+ */
3179
+ prependOnceListener(event: "Debugger.scriptFailedToParse", listener: (message: InspectorNotification<Debugger.ScriptFailedToParseEventDataType>) => void): this;
3180
+ /**
3181
+ * Fired when breakpoint is resolved to an actual script and location.
3182
+ */
3183
+ prependOnceListener(event: "Debugger.breakpointResolved", listener: (message: InspectorNotification<Debugger.BreakpointResolvedEventDataType>) => void): this;
3184
+ /**
3185
+ * Fired when the virtual machine stopped on breakpoint or exception or any other stop criteria.
3186
+ */
3187
+ prependOnceListener(event: "Debugger.paused", listener: (message: InspectorNotification<Debugger.PausedEventDataType>) => void): this;
3188
+ /**
3189
+ * Fired when the virtual machine resumed execution.
3190
+ */
3191
+ prependOnceListener(event: "Debugger.resumed", listener: () => void): this;
3192
+ /**
3193
+ * Issued when new console message is added.
3194
+ */
3195
+ prependOnceListener(event: "Console.messageAdded", listener: (message: InspectorNotification<Console.MessageAddedEventDataType>) => void): this;
3196
+ /**
3197
+ * Sent when new profile recording is started using console.profile() call.
3198
+ */
3199
+ prependOnceListener(event: "Profiler.consoleProfileStarted", listener: (message: InspectorNotification<Profiler.ConsoleProfileStartedEventDataType>) => void): this;
3200
+ prependOnceListener(event: "Profiler.consoleProfileFinished", listener: (message: InspectorNotification<Profiler.ConsoleProfileFinishedEventDataType>) => void): this;
3201
+ prependOnceListener(event: "HeapProfiler.addHeapSnapshotChunk", listener: (message: InspectorNotification<HeapProfiler.AddHeapSnapshotChunkEventDataType>) => void): this;
3202
+ prependOnceListener(event: "HeapProfiler.resetProfiles", listener: () => void): this;
3203
+ prependOnceListener(event: "HeapProfiler.reportHeapSnapshotProgress", listener: (message: InspectorNotification<HeapProfiler.ReportHeapSnapshotProgressEventDataType>) => void): this;
3204
+ /**
3205
+ * If heap objects tracking has been started then backend regularly sends a current value for last seen object id and corresponding timestamp. If the were changes in the heap since last event then one or more heapStatsUpdate events will be sent before a new lastSeenObjectId event.
3206
+ */
3207
+ prependOnceListener(event: "HeapProfiler.lastSeenObjectId", listener: (message: InspectorNotification<HeapProfiler.LastSeenObjectIdEventDataType>) => void): this;
3208
+ /**
3209
+ * If heap objects tracking has been started then backend may send update for one or more fragments
3210
+ */
3211
+ prependOnceListener(event: "HeapProfiler.heapStatsUpdate", listener: (message: InspectorNotification<HeapProfiler.HeapStatsUpdateEventDataType>) => void): this;
3212
+ /**
3213
+ * Fired when page is about to send HTTP request.
3214
+ */
3215
+ prependOnceListener(event: "Network.requestWillBeSent", listener: (message: InspectorNotification<Network.RequestWillBeSentEventDataType>) => void): this;
3216
+ /**
3217
+ * Fired when HTTP response is available.
3218
+ */
3219
+ prependOnceListener(event: "Network.responseReceived", listener: (message: InspectorNotification<Network.ResponseReceivedEventDataType>) => void): this;
3220
+ prependOnceListener(event: "Network.loadingFailed", listener: (message: InspectorNotification<Network.LoadingFailedEventDataType>) => void): this;
3221
+ prependOnceListener(event: "Network.loadingFinished", listener: (message: InspectorNotification<Network.LoadingFinishedEventDataType>) => void): this;
3222
+ /**
3223
+ * Fired when data chunk was received over the network.
3224
+ */
3225
+ prependOnceListener(event: "Network.dataReceived", listener: (message: InspectorNotification<Network.DataReceivedEventDataType>) => void): this;
3226
+ /**
3227
+ * Fired upon WebSocket creation.
3228
+ */
3229
+ prependOnceListener(event: "Network.webSocketCreated", listener: (message: InspectorNotification<Network.WebSocketCreatedEventDataType>) => void): this;
3230
+ /**
3231
+ * Fired when WebSocket is closed.
3232
+ */
3233
+ prependOnceListener(event: "Network.webSocketClosed", listener: (message: InspectorNotification<Network.WebSocketClosedEventDataType>) => void): this;
3234
+ /**
3235
+ * Fired when WebSocket handshake response becomes available.
3236
+ */
3237
+ prependOnceListener(event: "Network.webSocketHandshakeResponseReceived", listener: (message: InspectorNotification<Network.WebSocketHandshakeResponseReceivedEventDataType>) => void): this;
3238
+ /**
3239
+ * This event is fired instead of `Runtime.executionContextDestroyed` when
3240
+ * enabled.
3241
+ * It is fired when the Node process finished all code execution and is
3242
+ * waiting for all frontends to disconnect.
3243
+ */
3244
+ prependOnceListener(event: "NodeRuntime.waitingForDisconnect", listener: () => void): this;
3245
+ /**
3246
+ * This event is fired when the runtime is waiting for the debugger. For
3247
+ * example, when inspector.waitingForDebugger is called
3248
+ */
3249
+ prependOnceListener(event: "NodeRuntime.waitingForDebugger", listener: () => void): this;
3250
+ /**
3251
+ * Contains an bucket of collected trace events.
3252
+ */
3253
+ prependOnceListener(event: "NodeTracing.dataCollected", listener: (message: InspectorNotification<NodeTracing.DataCollectedEventDataType>) => void): this;
3254
+ /**
3255
+ * Signals that tracing is stopped and there is no trace buffers pending flush, all data were
3256
+ * delivered via dataCollected events.
3257
+ */
3258
+ prependOnceListener(event: "NodeTracing.tracingComplete", listener: () => void): this;
3259
+ /**
3260
+ * Issued when attached to a worker.
3261
+ */
3262
+ prependOnceListener(event: "NodeWorker.attachedToWorker", listener: (message: InspectorNotification<NodeWorker.AttachedToWorkerEventDataType>) => void): this;
3263
+ /**
3264
+ * Issued when detached from the worker.
3265
+ */
3266
+ prependOnceListener(event: "NodeWorker.detachedFromWorker", listener: (message: InspectorNotification<NodeWorker.DetachedFromWorkerEventDataType>) => void): this;
3267
+ /**
3268
+ * Notifies about a new protocol message received from the session
3269
+ * (session ID is provided in attachedToWorker notification).
3270
+ */
3271
+ prependOnceListener(event: "NodeWorker.receivedMessageFromWorker", listener: (message: InspectorNotification<NodeWorker.ReceivedMessageFromWorkerEventDataType>) => void): this;
3272
+ prependOnceListener(event: "Target.targetCreated", listener: (message: InspectorNotification<Target.TargetCreatedEventDataType>) => void): this;
3273
+ prependOnceListener(event: "Target.attachedToTarget", listener: (message: InspectorNotification<Target.AttachedToTargetEventDataType>) => void): this;
3274
+ prependOnceListener(event: "DOMStorage.domStorageItemAdded", listener: (message: InspectorNotification<DOMStorage.DomStorageItemAddedEventDataType>) => void): this;
3275
+ prependOnceListener(event: "DOMStorage.domStorageItemRemoved", listener: (message: InspectorNotification<DOMStorage.DomStorageItemRemovedEventDataType>) => void): this;
3276
+ prependOnceListener(event: "DOMStorage.domStorageItemUpdated", listener: (message: InspectorNotification<DOMStorage.DomStorageItemUpdatedEventDataType>) => void): this;
3277
+ prependOnceListener(event: "DOMStorage.domStorageItemsCleared", listener: (message: InspectorNotification<DOMStorage.DomStorageItemsClearedEventDataType>) => void): this;
3278
+ }
3279
+ }
3280
+ declare module "node:inspector/promises" {
3281
+ export {
3282
+ Schema,
3283
+ Runtime,
3284
+ Debugger,
3285
+ Console,
3286
+ Profiler,
3287
+ HeapProfiler,
3288
+ IO,
3289
+ Network,
3290
+ NodeRuntime,
3291
+ NodeTracing,
3292
+ NodeWorker,
3293
+ Target,
3294
+ DOMStorage,
3295
+ Storage,
3296
+ } from 'inspector';
3297
+ }
3298
+ declare module "node:inspector/promises" {
3299
+ import {
3300
+ InspectorNotification,
3301
+ Schema,
3302
+ Runtime,
3303
+ Debugger,
3304
+ Console,
3305
+ Profiler,
3306
+ HeapProfiler,
3307
+ IO,
3308
+ Network,
3309
+ NodeRuntime,
3310
+ NodeTracing,
3311
+ NodeWorker,
3312
+ Target,
3313
+ DOMStorage,
3314
+ Storage,
3315
+ } from "inspector";
3316
+ /**
3317
+ * The `inspector.Session` is used for dispatching messages to the V8 inspector
3318
+ * back-end and receiving message responses and notifications.
3319
+ * @since v19.0.0
3320
+ */
3321
+ interface Session {
3322
+ /**
3323
+ * Posts a message to the inspector back-end.
3324
+ *
3325
+ * ```js
3326
+ * import { Session } from 'node:inspector/promises';
3327
+ * try {
3328
+ * const session = new Session();
3329
+ * session.connect();
3330
+ * const result = await session.post('Runtime.evaluate', { expression: '2 + 2' });
3331
+ * console.log(result);
3332
+ * } catch (error) {
3333
+ * console.error(error);
3334
+ * }
3335
+ * // Output: { result: { type: 'number', value: 4, description: '4' } }
3336
+ * ```
3337
+ *
3338
+ * The latest version of the V8 inspector protocol is published on the
3339
+ * [Chrome DevTools Protocol Viewer](https://chromedevtools.github.io/devtools-protocol/v8/).
3340
+ *
3341
+ * Node.js inspector supports all the Chrome DevTools Protocol domains declared
3342
+ * by V8. Chrome DevTools Protocol domain provides an interface for interacting
3343
+ * with one of the runtime agents used to inspect the application state and listen
3344
+ * to the run-time events.
3345
+ */
3346
+ post(method: string, params?: object): Promise<void>;
3347
+ /**
3348
+ * Returns supported domains.
3349
+ */
3350
+ post(method: "Schema.getDomains"): Promise<Schema.GetDomainsReturnType>;
3351
+ /**
3352
+ * Evaluates expression on global object.
3353
+ */
3354
+ post(method: "Runtime.evaluate", params?: Runtime.EvaluateParameterType): Promise<Runtime.EvaluateReturnType>;
3355
+ /**
3356
+ * Add handler to promise with given promise object id.
3357
+ */
3358
+ post(method: "Runtime.awaitPromise", params?: Runtime.AwaitPromiseParameterType): Promise<Runtime.AwaitPromiseReturnType>;
3359
+ /**
3360
+ * Calls function with given declaration on the given object. Object group of the result is inherited from the target object.
3361
+ */
3362
+ post(method: "Runtime.callFunctionOn", params?: Runtime.CallFunctionOnParameterType): Promise<Runtime.CallFunctionOnReturnType>;
3363
+ /**
3364
+ * Returns properties of a given object. Object group of the result is inherited from the target object.
3365
+ */
3366
+ post(method: "Runtime.getProperties", params?: Runtime.GetPropertiesParameterType): Promise<Runtime.GetPropertiesReturnType>;
3367
+ /**
3368
+ * Releases remote object with given id.
3369
+ */
3370
+ post(method: "Runtime.releaseObject", params?: Runtime.ReleaseObjectParameterType): Promise<void>;
3371
+ /**
3372
+ * Releases all remote objects that belong to a given group.
3373
+ */
3374
+ post(method: "Runtime.releaseObjectGroup", params?: Runtime.ReleaseObjectGroupParameterType): Promise<void>;
3375
+ /**
3376
+ * Tells inspected instance to run if it was waiting for debugger to attach.
3377
+ */
3378
+ post(method: "Runtime.runIfWaitingForDebugger"): Promise<void>;
3379
+ /**
3380
+ * Enables reporting of execution contexts creation by means of <code>executionContextCreated</code> event. When the reporting gets enabled the event will be sent immediately for each existing execution context.
3381
+ */
3382
+ post(method: "Runtime.enable"): Promise<void>;
3383
+ /**
3384
+ * Disables reporting of execution contexts creation.
3385
+ */
3386
+ post(method: "Runtime.disable"): Promise<void>;
3387
+ /**
3388
+ * Discards collected exceptions and console API calls.
3389
+ */
3390
+ post(method: "Runtime.discardConsoleEntries"): Promise<void>;
3391
+ /**
3392
+ * @experimental
3393
+ */
3394
+ post(method: "Runtime.setCustomObjectFormatterEnabled", params?: Runtime.SetCustomObjectFormatterEnabledParameterType): Promise<void>;
3395
+ /**
3396
+ * Compiles expression.
3397
+ */
3398
+ post(method: "Runtime.compileScript", params?: Runtime.CompileScriptParameterType): Promise<Runtime.CompileScriptReturnType>;
3399
+ /**
3400
+ * Runs script with given id in a given context.
3401
+ */
3402
+ post(method: "Runtime.runScript", params?: Runtime.RunScriptParameterType): Promise<Runtime.RunScriptReturnType>;
3403
+ post(method: "Runtime.queryObjects", params?: Runtime.QueryObjectsParameterType): Promise<Runtime.QueryObjectsReturnType>;
3404
+ /**
3405
+ * Returns all let, const and class variables from global scope.
3406
+ */
3407
+ post(method: "Runtime.globalLexicalScopeNames", params?: Runtime.GlobalLexicalScopeNamesParameterType): Promise<Runtime.GlobalLexicalScopeNamesReturnType>;
3408
+ /**
3409
+ * Enables debugger for the given page. Clients should not assume that the debugging has been enabled until the result for this command is received.
3410
+ */
3411
+ post(method: "Debugger.enable"): Promise<Debugger.EnableReturnType>;
3412
+ /**
3413
+ * Disables debugger for given page.
3414
+ */
3415
+ post(method: "Debugger.disable"): Promise<void>;
3416
+ /**
3417
+ * Activates / deactivates all breakpoints on the page.
3418
+ */
3419
+ post(method: "Debugger.setBreakpointsActive", params?: Debugger.SetBreakpointsActiveParameterType): Promise<void>;
3420
+ /**
3421
+ * Makes page not interrupt on any pauses (breakpoint, exception, dom exception etc).
3422
+ */
3423
+ post(method: "Debugger.setSkipAllPauses", params?: Debugger.SetSkipAllPausesParameterType): Promise<void>;
3424
+ /**
3425
+ * Sets JavaScript breakpoint at given location specified either by URL or URL regex. Once this command is issued, all existing parsed scripts will have breakpoints resolved and returned in <code>locations</code> property. Further matching script parsing will result in subsequent <code>breakpointResolved</code> events issued. This logical breakpoint will survive page reloads.
3426
+ */
3427
+ post(method: "Debugger.setBreakpointByUrl", params?: Debugger.SetBreakpointByUrlParameterType): Promise<Debugger.SetBreakpointByUrlReturnType>;
3428
+ /**
3429
+ * Sets JavaScript breakpoint at a given location.
3430
+ */
3431
+ post(method: "Debugger.setBreakpoint", params?: Debugger.SetBreakpointParameterType): Promise<Debugger.SetBreakpointReturnType>;
3432
+ /**
3433
+ * Removes JavaScript breakpoint.
3434
+ */
3435
+ post(method: "Debugger.removeBreakpoint", params?: Debugger.RemoveBreakpointParameterType): Promise<void>;
3436
+ /**
3437
+ * Returns possible locations for breakpoint. scriptId in start and end range locations should be the same.
3438
+ */
3439
+ post(method: "Debugger.getPossibleBreakpoints", params?: Debugger.GetPossibleBreakpointsParameterType): Promise<Debugger.GetPossibleBreakpointsReturnType>;
3440
+ /**
3441
+ * Continues execution until specific location is reached.
3442
+ */
3443
+ post(method: "Debugger.continueToLocation", params?: Debugger.ContinueToLocationParameterType): Promise<void>;
3444
+ /**
3445
+ * @experimental
3446
+ */
3447
+ post(method: "Debugger.pauseOnAsyncCall", params?: Debugger.PauseOnAsyncCallParameterType): Promise<void>;
3448
+ /**
3449
+ * Steps over the statement.
3450
+ */
3451
+ post(method: "Debugger.stepOver"): Promise<void>;
3452
+ /**
3453
+ * Steps into the function call.
3454
+ */
3455
+ post(method: "Debugger.stepInto", params?: Debugger.StepIntoParameterType): Promise<void>;
3456
+ /**
3457
+ * Steps out of the function call.
3458
+ */
3459
+ post(method: "Debugger.stepOut"): Promise<void>;
3460
+ /**
3461
+ * Stops on the next JavaScript statement.
3462
+ */
3463
+ post(method: "Debugger.pause"): Promise<void>;
3464
+ /**
3465
+ * This method is deprecated - use Debugger.stepInto with breakOnAsyncCall and Debugger.pauseOnAsyncTask instead. Steps into next scheduled async task if any is scheduled before next pause. Returns success when async task is actually scheduled, returns error if no task were scheduled or another scheduleStepIntoAsync was called.
3466
+ * @experimental
3467
+ */
3468
+ post(method: "Debugger.scheduleStepIntoAsync"): Promise<void>;
3469
+ /**
3470
+ * Resumes JavaScript execution.
3471
+ */
3472
+ post(method: "Debugger.resume"): Promise<void>;
3473
+ /**
3474
+ * Returns stack trace with given <code>stackTraceId</code>.
3475
+ * @experimental
3476
+ */
3477
+ post(method: "Debugger.getStackTrace", params?: Debugger.GetStackTraceParameterType): Promise<Debugger.GetStackTraceReturnType>;
3478
+ /**
3479
+ * Searches for given string in script content.
3480
+ */
3481
+ post(method: "Debugger.searchInContent", params?: Debugger.SearchInContentParameterType): Promise<Debugger.SearchInContentReturnType>;
3482
+ /**
3483
+ * Edits JavaScript source live.
3484
+ */
3485
+ post(method: "Debugger.setScriptSource", params?: Debugger.SetScriptSourceParameterType): Promise<Debugger.SetScriptSourceReturnType>;
3486
+ /**
3487
+ * Restarts particular call frame from the beginning.
3488
+ */
3489
+ post(method: "Debugger.restartFrame", params?: Debugger.RestartFrameParameterType): Promise<Debugger.RestartFrameReturnType>;
3490
+ /**
3491
+ * Returns source for the script with given id.
3492
+ */
3493
+ post(method: "Debugger.getScriptSource", params?: Debugger.GetScriptSourceParameterType): Promise<Debugger.GetScriptSourceReturnType>;
3494
+ /**
3495
+ * Defines pause on exceptions state. Can be set to stop on all exceptions, uncaught exceptions or no exceptions. Initial pause on exceptions state is <code>none</code>.
3496
+ */
3497
+ post(method: "Debugger.setPauseOnExceptions", params?: Debugger.SetPauseOnExceptionsParameterType): Promise<void>;
3498
+ /**
3499
+ * Evaluates expression on a given call frame.
3500
+ */
3501
+ post(method: "Debugger.evaluateOnCallFrame", params?: Debugger.EvaluateOnCallFrameParameterType): Promise<Debugger.EvaluateOnCallFrameReturnType>;
3502
+ /**
3503
+ * Changes value of variable in a callframe. Object-based scopes are not supported and must be mutated manually.
3504
+ */
3505
+ post(method: "Debugger.setVariableValue", params?: Debugger.SetVariableValueParameterType): Promise<void>;
3506
+ /**
3507
+ * Changes return value in top frame. Available only at return break position.
3508
+ * @experimental
3509
+ */
3510
+ post(method: "Debugger.setReturnValue", params?: Debugger.SetReturnValueParameterType): Promise<void>;
3511
+ /**
3512
+ * Enables or disables async call stacks tracking.
3513
+ */
3514
+ post(method: "Debugger.setAsyncCallStackDepth", params?: Debugger.SetAsyncCallStackDepthParameterType): Promise<void>;
3515
+ /**
3516
+ * Replace previous blackbox patterns with passed ones. Forces backend to skip stepping/pausing in scripts with url matching one of the patterns. VM will try to leave blackboxed script by performing 'step in' several times, finally resorting to 'step out' if unsuccessful.
3517
+ * @experimental
3518
+ */
3519
+ post(method: "Debugger.setBlackboxPatterns", params?: Debugger.SetBlackboxPatternsParameterType): Promise<void>;
3520
+ /**
3521
+ * Makes backend skip steps in the script in blackboxed ranges. VM will try leave blacklisted scripts by performing 'step in' several times, finally resorting to 'step out' if unsuccessful. Positions array contains positions where blackbox state is changed. First interval isn't blackboxed. Array should be sorted.
3522
+ * @experimental
3523
+ */
3524
+ post(method: "Debugger.setBlackboxedRanges", params?: Debugger.SetBlackboxedRangesParameterType): Promise<void>;
3525
+ /**
3526
+ * Enables console domain, sends the messages collected so far to the client by means of the <code>messageAdded</code> notification.
3527
+ */
3528
+ post(method: "Console.enable"): Promise<void>;
3529
+ /**
3530
+ * Disables console domain, prevents further console messages from being reported to the client.
3531
+ */
3532
+ post(method: "Console.disable"): Promise<void>;
3533
+ /**
3534
+ * Does nothing.
3535
+ */
3536
+ post(method: "Console.clearMessages"): Promise<void>;
3537
+ post(method: "Profiler.enable"): Promise<void>;
3538
+ post(method: "Profiler.disable"): Promise<void>;
3539
+ /**
3540
+ * Changes CPU profiler sampling interval. Must be called before CPU profiles recording started.
3541
+ */
3542
+ post(method: "Profiler.setSamplingInterval", params?: Profiler.SetSamplingIntervalParameterType): Promise<void>;
3543
+ post(method: "Profiler.start"): Promise<void>;
3544
+ post(method: "Profiler.stop"): Promise<Profiler.StopReturnType>;
3545
+ /**
3546
+ * Enable precise code coverage. Coverage data for JavaScript executed before enabling precise code coverage may be incomplete. Enabling prevents running optimized code and resets execution counters.
3547
+ */
3548
+ post(method: "Profiler.startPreciseCoverage", params?: Profiler.StartPreciseCoverageParameterType): Promise<void>;
3549
+ /**
3550
+ * Disable precise code coverage. Disabling releases unnecessary execution count records and allows executing optimized code.
3551
+ */
3552
+ post(method: "Profiler.stopPreciseCoverage"): Promise<void>;
3553
+ /**
3554
+ * Collect coverage data for the current isolate, and resets execution counters. Precise code coverage needs to have started.
3555
+ */
3556
+ post(method: "Profiler.takePreciseCoverage"): Promise<Profiler.TakePreciseCoverageReturnType>;
3557
+ /**
3558
+ * Collect coverage data for the current isolate. The coverage data may be incomplete due to garbage collection.
3559
+ */
3560
+ post(method: "Profiler.getBestEffortCoverage"): Promise<Profiler.GetBestEffortCoverageReturnType>;
3561
+ post(method: "HeapProfiler.enable"): Promise<void>;
3562
+ post(method: "HeapProfiler.disable"): Promise<void>;
3563
+ post(method: "HeapProfiler.startTrackingHeapObjects", params?: HeapProfiler.StartTrackingHeapObjectsParameterType): Promise<void>;
3564
+ post(method: "HeapProfiler.stopTrackingHeapObjects", params?: HeapProfiler.StopTrackingHeapObjectsParameterType): Promise<void>;
3565
+ post(method: "HeapProfiler.takeHeapSnapshot", params?: HeapProfiler.TakeHeapSnapshotParameterType): Promise<void>;
3566
+ post(method: "HeapProfiler.collectGarbage"): Promise<void>;
3567
+ post(method: "HeapProfiler.getObjectByHeapObjectId", params?: HeapProfiler.GetObjectByHeapObjectIdParameterType): Promise<HeapProfiler.GetObjectByHeapObjectIdReturnType>;
3568
+ /**
3569
+ * Enables console to refer to the node with given id via $x (see Command Line API for more details $x functions).
3570
+ */
3571
+ post(method: "HeapProfiler.addInspectedHeapObject", params?: HeapProfiler.AddInspectedHeapObjectParameterType): Promise<void>;
3572
+ post(method: "HeapProfiler.getHeapObjectId", params?: HeapProfiler.GetHeapObjectIdParameterType): Promise<HeapProfiler.GetHeapObjectIdReturnType>;
3573
+ post(method: "HeapProfiler.startSampling", params?: HeapProfiler.StartSamplingParameterType): Promise<void>;
3574
+ post(method: "HeapProfiler.stopSampling"): Promise<HeapProfiler.StopSamplingReturnType>;
3575
+ post(method: "HeapProfiler.getSamplingProfile"): Promise<HeapProfiler.GetSamplingProfileReturnType>;
3576
+ /**
3577
+ * Read a chunk of the stream
3578
+ */
3579
+ post(method: "IO.read", params?: IO.ReadParameterType): Promise<IO.ReadReturnType>;
3580
+ post(method: "IO.close", params?: IO.CloseParameterType): Promise<void>;
3581
+ /**
3582
+ * Disables network tracking, prevents network events from being sent to the client.
3583
+ */
3584
+ post(method: "Network.disable"): Promise<void>;
3585
+ /**
3586
+ * Enables network tracking, network events will now be delivered to the client.
3587
+ */
3588
+ post(method: "Network.enable", params?: Network.EnableParameterType): Promise<void>;
3589
+ /**
3590
+ * Returns post data sent with the request. Returns an error when no data was sent with the request.
3591
+ */
3592
+ post(method: "Network.getRequestPostData", params?: Network.GetRequestPostDataParameterType): Promise<Network.GetRequestPostDataReturnType>;
3593
+ /**
3594
+ * Returns content served for the given request.
3595
+ */
3596
+ post(method: "Network.getResponseBody", params?: Network.GetResponseBodyParameterType): Promise<Network.GetResponseBodyReturnType>;
3597
+ /**
3598
+ * Enables streaming of the response for the given requestId.
3599
+ * If enabled, the dataReceived event contains the data that was received during streaming.
3600
+ * @experimental
3601
+ */
3602
+ post(method: "Network.streamResourceContent", params?: Network.StreamResourceContentParameterType): Promise<Network.StreamResourceContentReturnType>;
3603
+ /**
3604
+ * Fetches the resource and returns the content.
3605
+ */
3606
+ post(method: "Network.loadNetworkResource", params?: Network.LoadNetworkResourceParameterType): Promise<Network.LoadNetworkResourceReturnType>;
3607
+ /**
3608
+ * Enable the NodeRuntime events except by `NodeRuntime.waitingForDisconnect`.
3609
+ */
3610
+ post(method: "NodeRuntime.enable"): Promise<void>;
3611
+ /**
3612
+ * Disable NodeRuntime events
3613
+ */
3614
+ post(method: "NodeRuntime.disable"): Promise<void>;
3615
+ /**
3616
+ * Enable the `NodeRuntime.waitingForDisconnect`.
3617
+ */
3618
+ post(method: "NodeRuntime.notifyWhenWaitingForDisconnect", params?: NodeRuntime.NotifyWhenWaitingForDisconnectParameterType): Promise<void>;
3619
+ /**
3620
+ * Gets supported tracing categories.
3621
+ */
3622
+ post(method: "NodeTracing.getCategories"): Promise<NodeTracing.GetCategoriesReturnType>;
3623
+ /**
3624
+ * Start trace events collection.
3625
+ */
3626
+ post(method: "NodeTracing.start", params?: NodeTracing.StartParameterType): Promise<void>;
3627
+ /**
3628
+ * Stop trace events collection. Remaining collected events will be sent as a sequence of
3629
+ * dataCollected events followed by tracingComplete event.
3630
+ */
3631
+ post(method: "NodeTracing.stop"): Promise<void>;
3632
+ /**
3633
+ * Sends protocol message over session with given id.
3634
+ */
3635
+ post(method: "NodeWorker.sendMessageToWorker", params?: NodeWorker.SendMessageToWorkerParameterType): Promise<void>;
3636
+ /**
3637
+ * Instructs the inspector to attach to running workers. Will also attach to new workers
3638
+ * as they start
3639
+ */
3640
+ post(method: "NodeWorker.enable", params?: NodeWorker.EnableParameterType): Promise<void>;
3641
+ /**
3642
+ * Detaches from all running workers and disables attaching to new workers as they are started.
3643
+ */
3644
+ post(method: "NodeWorker.disable"): Promise<void>;
3645
+ /**
3646
+ * Detached from the worker with given sessionId.
3647
+ */
3648
+ post(method: "NodeWorker.detach", params?: NodeWorker.DetachParameterType): Promise<void>;
3649
+ post(method: "Target.getTargets"): Promise<Target.GetTargetsReturnType>;
3650
+ post(method: "Target.setAutoAttach", params?: Target.SetAutoAttachParameterType): Promise<void>;
3651
+ post(method: "DOMStorage.clear", params?: DOMStorage.ClearParameterType): Promise<void>;
3652
+ /**
3653
+ * Disables storage tracking, prevents storage events from being sent to the client.
3654
+ */
3655
+ post(method: "DOMStorage.disable"): Promise<void>;
3656
+ /**
3657
+ * Enables storage tracking, storage events will now be delivered to the client.
3658
+ */
3659
+ post(method: "DOMStorage.enable"): Promise<void>;
3660
+ post(method: "DOMStorage.getDOMStorageItems", params?: DOMStorage.GetDOMStorageItemsParameterType): Promise<DOMStorage.GetDOMStorageItemsReturnType>;
3661
+ post(method: "DOMStorage.removeDOMStorageItem", params?: DOMStorage.RemoveDOMStorageItemParameterType): Promise<void>;
3662
+ post(method: "DOMStorage.setDOMStorageItem", params?: DOMStorage.SetDOMStorageItemParameterType): Promise<void>;
3663
+ /**
3664
+ * @experimental
3665
+ */
3666
+ post(method: "Storage.getStorageKey", params?: Storage.GetStorageKeyParameterType): Promise<Storage.GetStorageKeyReturnType>;
3667
+ addListener(event: string, listener: (...args: any[]) => void): this;
3668
+ /**
3669
+ * Emitted when any notification from the V8 Inspector is received.
3670
+ */
3671
+ addListener(event: "inspectorNotification", listener: (message: InspectorNotification<object>) => void): this;
3672
+ /**
3673
+ * Issued when new execution context is created.
3674
+ */
3675
+ addListener(event: "Runtime.executionContextCreated", listener: (message: InspectorNotification<Runtime.ExecutionContextCreatedEventDataType>) => void): this;
3676
+ /**
3677
+ * Issued when execution context is destroyed.
3678
+ */
3679
+ addListener(event: "Runtime.executionContextDestroyed", listener: (message: InspectorNotification<Runtime.ExecutionContextDestroyedEventDataType>) => void): this;
3680
+ /**
3681
+ * Issued when all executionContexts were cleared in browser
3682
+ */
3683
+ addListener(event: "Runtime.executionContextsCleared", listener: () => void): this;
3684
+ /**
3685
+ * Issued when exception was thrown and unhandled.
3686
+ */
3687
+ addListener(event: "Runtime.exceptionThrown", listener: (message: InspectorNotification<Runtime.ExceptionThrownEventDataType>) => void): this;
3688
+ /**
3689
+ * Issued when unhandled exception was revoked.
3690
+ */
3691
+ addListener(event: "Runtime.exceptionRevoked", listener: (message: InspectorNotification<Runtime.ExceptionRevokedEventDataType>) => void): this;
3692
+ /**
3693
+ * Issued when console API was called.
3694
+ */
3695
+ addListener(event: "Runtime.consoleAPICalled", listener: (message: InspectorNotification<Runtime.ConsoleAPICalledEventDataType>) => void): this;
3696
+ /**
3697
+ * Issued when object should be inspected (for example, as a result of inspect() command line API call).
3698
+ */
3699
+ addListener(event: "Runtime.inspectRequested", listener: (message: InspectorNotification<Runtime.InspectRequestedEventDataType>) => void): this;
3700
+ /**
3701
+ * Fired when virtual machine parses script. This event is also fired for all known and uncollected scripts upon enabling debugger.
3702
+ */
3703
+ addListener(event: "Debugger.scriptParsed", listener: (message: InspectorNotification<Debugger.ScriptParsedEventDataType>) => void): this;
3704
+ /**
3705
+ * Fired when virtual machine fails to parse the script.
3706
+ */
3707
+ addListener(event: "Debugger.scriptFailedToParse", listener: (message: InspectorNotification<Debugger.ScriptFailedToParseEventDataType>) => void): this;
3708
+ /**
3709
+ * Fired when breakpoint is resolved to an actual script and location.
3710
+ */
3711
+ addListener(event: "Debugger.breakpointResolved", listener: (message: InspectorNotification<Debugger.BreakpointResolvedEventDataType>) => void): this;
3712
+ /**
3713
+ * Fired when the virtual machine stopped on breakpoint or exception or any other stop criteria.
3714
+ */
3715
+ addListener(event: "Debugger.paused", listener: (message: InspectorNotification<Debugger.PausedEventDataType>) => void): this;
3716
+ /**
3717
+ * Fired when the virtual machine resumed execution.
3718
+ */
3719
+ addListener(event: "Debugger.resumed", listener: () => void): this;
3720
+ /**
3721
+ * Issued when new console message is added.
3722
+ */
3723
+ addListener(event: "Console.messageAdded", listener: (message: InspectorNotification<Console.MessageAddedEventDataType>) => void): this;
3724
+ /**
3725
+ * Sent when new profile recording is started using console.profile() call.
3726
+ */
3727
+ addListener(event: "Profiler.consoleProfileStarted", listener: (message: InspectorNotification<Profiler.ConsoleProfileStartedEventDataType>) => void): this;
3728
+ addListener(event: "Profiler.consoleProfileFinished", listener: (message: InspectorNotification<Profiler.ConsoleProfileFinishedEventDataType>) => void): this;
3729
+ addListener(event: "HeapProfiler.addHeapSnapshotChunk", listener: (message: InspectorNotification<HeapProfiler.AddHeapSnapshotChunkEventDataType>) => void): this;
3730
+ addListener(event: "HeapProfiler.resetProfiles", listener: () => void): this;
3731
+ addListener(event: "HeapProfiler.reportHeapSnapshotProgress", listener: (message: InspectorNotification<HeapProfiler.ReportHeapSnapshotProgressEventDataType>) => void): this;
3732
+ /**
3733
+ * If heap objects tracking has been started then backend regularly sends a current value for last seen object id and corresponding timestamp. If the were changes in the heap since last event then one or more heapStatsUpdate events will be sent before a new lastSeenObjectId event.
3734
+ */
3735
+ addListener(event: "HeapProfiler.lastSeenObjectId", listener: (message: InspectorNotification<HeapProfiler.LastSeenObjectIdEventDataType>) => void): this;
3736
+ /**
3737
+ * If heap objects tracking has been started then backend may send update for one or more fragments
3738
+ */
3739
+ addListener(event: "HeapProfiler.heapStatsUpdate", listener: (message: InspectorNotification<HeapProfiler.HeapStatsUpdateEventDataType>) => void): this;
3740
+ /**
3741
+ * Fired when page is about to send HTTP request.
3742
+ */
3743
+ addListener(event: "Network.requestWillBeSent", listener: (message: InspectorNotification<Network.RequestWillBeSentEventDataType>) => void): this;
3744
+ /**
3745
+ * Fired when HTTP response is available.
3746
+ */
3747
+ addListener(event: "Network.responseReceived", listener: (message: InspectorNotification<Network.ResponseReceivedEventDataType>) => void): this;
3748
+ addListener(event: "Network.loadingFailed", listener: (message: InspectorNotification<Network.LoadingFailedEventDataType>) => void): this;
3749
+ addListener(event: "Network.loadingFinished", listener: (message: InspectorNotification<Network.LoadingFinishedEventDataType>) => void): this;
3750
+ /**
3751
+ * Fired when data chunk was received over the network.
3752
+ */
3753
+ addListener(event: "Network.dataReceived", listener: (message: InspectorNotification<Network.DataReceivedEventDataType>) => void): this;
3754
+ /**
3755
+ * Fired upon WebSocket creation.
3756
+ */
3757
+ addListener(event: "Network.webSocketCreated", listener: (message: InspectorNotification<Network.WebSocketCreatedEventDataType>) => void): this;
3758
+ /**
3759
+ * Fired when WebSocket is closed.
3760
+ */
3761
+ addListener(event: "Network.webSocketClosed", listener: (message: InspectorNotification<Network.WebSocketClosedEventDataType>) => void): this;
3762
+ /**
3763
+ * Fired when WebSocket handshake response becomes available.
3764
+ */
3765
+ addListener(event: "Network.webSocketHandshakeResponseReceived", listener: (message: InspectorNotification<Network.WebSocketHandshakeResponseReceivedEventDataType>) => void): this;
3766
+ /**
3767
+ * This event is fired instead of `Runtime.executionContextDestroyed` when
3768
+ * enabled.
3769
+ * It is fired when the Node process finished all code execution and is
3770
+ * waiting for all frontends to disconnect.
3771
+ */
3772
+ addListener(event: "NodeRuntime.waitingForDisconnect", listener: () => void): this;
3773
+ /**
3774
+ * This event is fired when the runtime is waiting for the debugger. For
3775
+ * example, when inspector.waitingForDebugger is called
3776
+ */
3777
+ addListener(event: "NodeRuntime.waitingForDebugger", listener: () => void): this;
3778
+ /**
3779
+ * Contains an bucket of collected trace events.
3780
+ */
3781
+ addListener(event: "NodeTracing.dataCollected", listener: (message: InspectorNotification<NodeTracing.DataCollectedEventDataType>) => void): this;
3782
+ /**
3783
+ * Signals that tracing is stopped and there is no trace buffers pending flush, all data were
3784
+ * delivered via dataCollected events.
3785
+ */
3786
+ addListener(event: "NodeTracing.tracingComplete", listener: () => void): this;
3787
+ /**
3788
+ * Issued when attached to a worker.
3789
+ */
3790
+ addListener(event: "NodeWorker.attachedToWorker", listener: (message: InspectorNotification<NodeWorker.AttachedToWorkerEventDataType>) => void): this;
3791
+ /**
3792
+ * Issued when detached from the worker.
3793
+ */
3794
+ addListener(event: "NodeWorker.detachedFromWorker", listener: (message: InspectorNotification<NodeWorker.DetachedFromWorkerEventDataType>) => void): this;
3795
+ /**
3796
+ * Notifies about a new protocol message received from the session
3797
+ * (session ID is provided in attachedToWorker notification).
3798
+ */
3799
+ addListener(event: "NodeWorker.receivedMessageFromWorker", listener: (message: InspectorNotification<NodeWorker.ReceivedMessageFromWorkerEventDataType>) => void): this;
3800
+ addListener(event: "Target.targetCreated", listener: (message: InspectorNotification<Target.TargetCreatedEventDataType>) => void): this;
3801
+ addListener(event: "Target.attachedToTarget", listener: (message: InspectorNotification<Target.AttachedToTargetEventDataType>) => void): this;
3802
+ addListener(event: "DOMStorage.domStorageItemAdded", listener: (message: InspectorNotification<DOMStorage.DomStorageItemAddedEventDataType>) => void): this;
3803
+ addListener(event: "DOMStorage.domStorageItemRemoved", listener: (message: InspectorNotification<DOMStorage.DomStorageItemRemovedEventDataType>) => void): this;
3804
+ addListener(event: "DOMStorage.domStorageItemUpdated", listener: (message: InspectorNotification<DOMStorage.DomStorageItemUpdatedEventDataType>) => void): this;
3805
+ addListener(event: "DOMStorage.domStorageItemsCleared", listener: (message: InspectorNotification<DOMStorage.DomStorageItemsClearedEventDataType>) => void): this;
3806
+ emit(event: string | symbol, ...args: any[]): boolean;
3807
+ emit(event: "inspectorNotification", message: InspectorNotification<object>): boolean;
3808
+ emit(event: "Runtime.executionContextCreated", message: InspectorNotification<Runtime.ExecutionContextCreatedEventDataType>): boolean;
3809
+ emit(event: "Runtime.executionContextDestroyed", message: InspectorNotification<Runtime.ExecutionContextDestroyedEventDataType>): boolean;
3810
+ emit(event: "Runtime.executionContextsCleared"): boolean;
3811
+ emit(event: "Runtime.exceptionThrown", message: InspectorNotification<Runtime.ExceptionThrownEventDataType>): boolean;
3812
+ emit(event: "Runtime.exceptionRevoked", message: InspectorNotification<Runtime.ExceptionRevokedEventDataType>): boolean;
3813
+ emit(event: "Runtime.consoleAPICalled", message: InspectorNotification<Runtime.ConsoleAPICalledEventDataType>): boolean;
3814
+ emit(event: "Runtime.inspectRequested", message: InspectorNotification<Runtime.InspectRequestedEventDataType>): boolean;
3815
+ emit(event: "Debugger.scriptParsed", message: InspectorNotification<Debugger.ScriptParsedEventDataType>): boolean;
3816
+ emit(event: "Debugger.scriptFailedToParse", message: InspectorNotification<Debugger.ScriptFailedToParseEventDataType>): boolean;
3817
+ emit(event: "Debugger.breakpointResolved", message: InspectorNotification<Debugger.BreakpointResolvedEventDataType>): boolean;
3818
+ emit(event: "Debugger.paused", message: InspectorNotification<Debugger.PausedEventDataType>): boolean;
3819
+ emit(event: "Debugger.resumed"): boolean;
3820
+ emit(event: "Console.messageAdded", message: InspectorNotification<Console.MessageAddedEventDataType>): boolean;
3821
+ emit(event: "Profiler.consoleProfileStarted", message: InspectorNotification<Profiler.ConsoleProfileStartedEventDataType>): boolean;
3822
+ emit(event: "Profiler.consoleProfileFinished", message: InspectorNotification<Profiler.ConsoleProfileFinishedEventDataType>): boolean;
3823
+ emit(event: "HeapProfiler.addHeapSnapshotChunk", message: InspectorNotification<HeapProfiler.AddHeapSnapshotChunkEventDataType>): boolean;
3824
+ emit(event: "HeapProfiler.resetProfiles"): boolean;
3825
+ emit(event: "HeapProfiler.reportHeapSnapshotProgress", message: InspectorNotification<HeapProfiler.ReportHeapSnapshotProgressEventDataType>): boolean;
3826
+ emit(event: "HeapProfiler.lastSeenObjectId", message: InspectorNotification<HeapProfiler.LastSeenObjectIdEventDataType>): boolean;
3827
+ emit(event: "HeapProfiler.heapStatsUpdate", message: InspectorNotification<HeapProfiler.HeapStatsUpdateEventDataType>): boolean;
3828
+ emit(event: "Network.requestWillBeSent", message: InspectorNotification<Network.RequestWillBeSentEventDataType>): boolean;
3829
+ emit(event: "Network.responseReceived", message: InspectorNotification<Network.ResponseReceivedEventDataType>): boolean;
3830
+ emit(event: "Network.loadingFailed", message: InspectorNotification<Network.LoadingFailedEventDataType>): boolean;
3831
+ emit(event: "Network.loadingFinished", message: InspectorNotification<Network.LoadingFinishedEventDataType>): boolean;
3832
+ emit(event: "Network.dataReceived", message: InspectorNotification<Network.DataReceivedEventDataType>): boolean;
3833
+ emit(event: "Network.webSocketCreated", message: InspectorNotification<Network.WebSocketCreatedEventDataType>): boolean;
3834
+ emit(event: "Network.webSocketClosed", message: InspectorNotification<Network.WebSocketClosedEventDataType>): boolean;
3835
+ emit(event: "Network.webSocketHandshakeResponseReceived", message: InspectorNotification<Network.WebSocketHandshakeResponseReceivedEventDataType>): boolean;
3836
+ emit(event: "NodeRuntime.waitingForDisconnect"): boolean;
3837
+ emit(event: "NodeRuntime.waitingForDebugger"): boolean;
3838
+ emit(event: "NodeTracing.dataCollected", message: InspectorNotification<NodeTracing.DataCollectedEventDataType>): boolean;
3839
+ emit(event: "NodeTracing.tracingComplete"): boolean;
3840
+ emit(event: "NodeWorker.attachedToWorker", message: InspectorNotification<NodeWorker.AttachedToWorkerEventDataType>): boolean;
3841
+ emit(event: "NodeWorker.detachedFromWorker", message: InspectorNotification<NodeWorker.DetachedFromWorkerEventDataType>): boolean;
3842
+ emit(event: "NodeWorker.receivedMessageFromWorker", message: InspectorNotification<NodeWorker.ReceivedMessageFromWorkerEventDataType>): boolean;
3843
+ emit(event: "Target.targetCreated", message: InspectorNotification<Target.TargetCreatedEventDataType>): boolean;
3844
+ emit(event: "Target.attachedToTarget", message: InspectorNotification<Target.AttachedToTargetEventDataType>): boolean;
3845
+ emit(event: "DOMStorage.domStorageItemAdded", message: InspectorNotification<DOMStorage.DomStorageItemAddedEventDataType>): boolean;
3846
+ emit(event: "DOMStorage.domStorageItemRemoved", message: InspectorNotification<DOMStorage.DomStorageItemRemovedEventDataType>): boolean;
3847
+ emit(event: "DOMStorage.domStorageItemUpdated", message: InspectorNotification<DOMStorage.DomStorageItemUpdatedEventDataType>): boolean;
3848
+ emit(event: "DOMStorage.domStorageItemsCleared", message: InspectorNotification<DOMStorage.DomStorageItemsClearedEventDataType>): boolean;
3849
+ on(event: string, listener: (...args: any[]) => void): this;
3850
+ /**
3851
+ * Emitted when any notification from the V8 Inspector is received.
3852
+ */
3853
+ on(event: "inspectorNotification", listener: (message: InspectorNotification<object>) => void): this;
3854
+ /**
3855
+ * Issued when new execution context is created.
3856
+ */
3857
+ on(event: "Runtime.executionContextCreated", listener: (message: InspectorNotification<Runtime.ExecutionContextCreatedEventDataType>) => void): this;
3858
+ /**
3859
+ * Issued when execution context is destroyed.
3860
+ */
3861
+ on(event: "Runtime.executionContextDestroyed", listener: (message: InspectorNotification<Runtime.ExecutionContextDestroyedEventDataType>) => void): this;
3862
+ /**
3863
+ * Issued when all executionContexts were cleared in browser
3864
+ */
3865
+ on(event: "Runtime.executionContextsCleared", listener: () => void): this;
3866
+ /**
3867
+ * Issued when exception was thrown and unhandled.
3868
+ */
3869
+ on(event: "Runtime.exceptionThrown", listener: (message: InspectorNotification<Runtime.ExceptionThrownEventDataType>) => void): this;
3870
+ /**
3871
+ * Issued when unhandled exception was revoked.
3872
+ */
3873
+ on(event: "Runtime.exceptionRevoked", listener: (message: InspectorNotification<Runtime.ExceptionRevokedEventDataType>) => void): this;
3874
+ /**
3875
+ * Issued when console API was called.
3876
+ */
3877
+ on(event: "Runtime.consoleAPICalled", listener: (message: InspectorNotification<Runtime.ConsoleAPICalledEventDataType>) => void): this;
3878
+ /**
3879
+ * Issued when object should be inspected (for example, as a result of inspect() command line API call).
3880
+ */
3881
+ on(event: "Runtime.inspectRequested", listener: (message: InspectorNotification<Runtime.InspectRequestedEventDataType>) => void): this;
3882
+ /**
3883
+ * Fired when virtual machine parses script. This event is also fired for all known and uncollected scripts upon enabling debugger.
3884
+ */
3885
+ on(event: "Debugger.scriptParsed", listener: (message: InspectorNotification<Debugger.ScriptParsedEventDataType>) => void): this;
3886
+ /**
3887
+ * Fired when virtual machine fails to parse the script.
3888
+ */
3889
+ on(event: "Debugger.scriptFailedToParse", listener: (message: InspectorNotification<Debugger.ScriptFailedToParseEventDataType>) => void): this;
3890
+ /**
3891
+ * Fired when breakpoint is resolved to an actual script and location.
3892
+ */
3893
+ on(event: "Debugger.breakpointResolved", listener: (message: InspectorNotification<Debugger.BreakpointResolvedEventDataType>) => void): this;
3894
+ /**
3895
+ * Fired when the virtual machine stopped on breakpoint or exception or any other stop criteria.
3896
+ */
3897
+ on(event: "Debugger.paused", listener: (message: InspectorNotification<Debugger.PausedEventDataType>) => void): this;
3898
+ /**
3899
+ * Fired when the virtual machine resumed execution.
3900
+ */
3901
+ on(event: "Debugger.resumed", listener: () => void): this;
3902
+ /**
3903
+ * Issued when new console message is added.
3904
+ */
3905
+ on(event: "Console.messageAdded", listener: (message: InspectorNotification<Console.MessageAddedEventDataType>) => void): this;
3906
+ /**
3907
+ * Sent when new profile recording is started using console.profile() call.
3908
+ */
3909
+ on(event: "Profiler.consoleProfileStarted", listener: (message: InspectorNotification<Profiler.ConsoleProfileStartedEventDataType>) => void): this;
3910
+ on(event: "Profiler.consoleProfileFinished", listener: (message: InspectorNotification<Profiler.ConsoleProfileFinishedEventDataType>) => void): this;
3911
+ on(event: "HeapProfiler.addHeapSnapshotChunk", listener: (message: InspectorNotification<HeapProfiler.AddHeapSnapshotChunkEventDataType>) => void): this;
3912
+ on(event: "HeapProfiler.resetProfiles", listener: () => void): this;
3913
+ on(event: "HeapProfiler.reportHeapSnapshotProgress", listener: (message: InspectorNotification<HeapProfiler.ReportHeapSnapshotProgressEventDataType>) => void): this;
3914
+ /**
3915
+ * If heap objects tracking has been started then backend regularly sends a current value for last seen object id and corresponding timestamp. If the were changes in the heap since last event then one or more heapStatsUpdate events will be sent before a new lastSeenObjectId event.
3916
+ */
3917
+ on(event: "HeapProfiler.lastSeenObjectId", listener: (message: InspectorNotification<HeapProfiler.LastSeenObjectIdEventDataType>) => void): this;
3918
+ /**
3919
+ * If heap objects tracking has been started then backend may send update for one or more fragments
3920
+ */
3921
+ on(event: "HeapProfiler.heapStatsUpdate", listener: (message: InspectorNotification<HeapProfiler.HeapStatsUpdateEventDataType>) => void): this;
3922
+ /**
3923
+ * Fired when page is about to send HTTP request.
3924
+ */
3925
+ on(event: "Network.requestWillBeSent", listener: (message: InspectorNotification<Network.RequestWillBeSentEventDataType>) => void): this;
3926
+ /**
3927
+ * Fired when HTTP response is available.
3928
+ */
3929
+ on(event: "Network.responseReceived", listener: (message: InspectorNotification<Network.ResponseReceivedEventDataType>) => void): this;
3930
+ on(event: "Network.loadingFailed", listener: (message: InspectorNotification<Network.LoadingFailedEventDataType>) => void): this;
3931
+ on(event: "Network.loadingFinished", listener: (message: InspectorNotification<Network.LoadingFinishedEventDataType>) => void): this;
3932
+ /**
3933
+ * Fired when data chunk was received over the network.
3934
+ */
3935
+ on(event: "Network.dataReceived", listener: (message: InspectorNotification<Network.DataReceivedEventDataType>) => void): this;
3936
+ /**
3937
+ * Fired upon WebSocket creation.
3938
+ */
3939
+ on(event: "Network.webSocketCreated", listener: (message: InspectorNotification<Network.WebSocketCreatedEventDataType>) => void): this;
3940
+ /**
3941
+ * Fired when WebSocket is closed.
3942
+ */
3943
+ on(event: "Network.webSocketClosed", listener: (message: InspectorNotification<Network.WebSocketClosedEventDataType>) => void): this;
3944
+ /**
3945
+ * Fired when WebSocket handshake response becomes available.
3946
+ */
3947
+ on(event: "Network.webSocketHandshakeResponseReceived", listener: (message: InspectorNotification<Network.WebSocketHandshakeResponseReceivedEventDataType>) => void): this;
3948
+ /**
3949
+ * This event is fired instead of `Runtime.executionContextDestroyed` when
3950
+ * enabled.
3951
+ * It is fired when the Node process finished all code execution and is
3952
+ * waiting for all frontends to disconnect.
3953
+ */
3954
+ on(event: "NodeRuntime.waitingForDisconnect", listener: () => void): this;
3955
+ /**
3956
+ * This event is fired when the runtime is waiting for the debugger. For
3957
+ * example, when inspector.waitingForDebugger is called
3958
+ */
3959
+ on(event: "NodeRuntime.waitingForDebugger", listener: () => void): this;
3960
+ /**
3961
+ * Contains an bucket of collected trace events.
3962
+ */
3963
+ on(event: "NodeTracing.dataCollected", listener: (message: InspectorNotification<NodeTracing.DataCollectedEventDataType>) => void): this;
3964
+ /**
3965
+ * Signals that tracing is stopped and there is no trace buffers pending flush, all data were
3966
+ * delivered via dataCollected events.
3967
+ */
3968
+ on(event: "NodeTracing.tracingComplete", listener: () => void): this;
3969
+ /**
3970
+ * Issued when attached to a worker.
3971
+ */
3972
+ on(event: "NodeWorker.attachedToWorker", listener: (message: InspectorNotification<NodeWorker.AttachedToWorkerEventDataType>) => void): this;
3973
+ /**
3974
+ * Issued when detached from the worker.
3975
+ */
3976
+ on(event: "NodeWorker.detachedFromWorker", listener: (message: InspectorNotification<NodeWorker.DetachedFromWorkerEventDataType>) => void): this;
3977
+ /**
3978
+ * Notifies about a new protocol message received from the session
3979
+ * (session ID is provided in attachedToWorker notification).
3980
+ */
3981
+ on(event: "NodeWorker.receivedMessageFromWorker", listener: (message: InspectorNotification<NodeWorker.ReceivedMessageFromWorkerEventDataType>) => void): this;
3982
+ on(event: "Target.targetCreated", listener: (message: InspectorNotification<Target.TargetCreatedEventDataType>) => void): this;
3983
+ on(event: "Target.attachedToTarget", listener: (message: InspectorNotification<Target.AttachedToTargetEventDataType>) => void): this;
3984
+ on(event: "DOMStorage.domStorageItemAdded", listener: (message: InspectorNotification<DOMStorage.DomStorageItemAddedEventDataType>) => void): this;
3985
+ on(event: "DOMStorage.domStorageItemRemoved", listener: (message: InspectorNotification<DOMStorage.DomStorageItemRemovedEventDataType>) => void): this;
3986
+ on(event: "DOMStorage.domStorageItemUpdated", listener: (message: InspectorNotification<DOMStorage.DomStorageItemUpdatedEventDataType>) => void): this;
3987
+ on(event: "DOMStorage.domStorageItemsCleared", listener: (message: InspectorNotification<DOMStorage.DomStorageItemsClearedEventDataType>) => void): this;
3988
+ once(event: string, listener: (...args: any[]) => void): this;
3989
+ /**
3990
+ * Emitted when any notification from the V8 Inspector is received.
3991
+ */
3992
+ once(event: "inspectorNotification", listener: (message: InspectorNotification<object>) => void): this;
3993
+ /**
3994
+ * Issued when new execution context is created.
3995
+ */
3996
+ once(event: "Runtime.executionContextCreated", listener: (message: InspectorNotification<Runtime.ExecutionContextCreatedEventDataType>) => void): this;
3997
+ /**
3998
+ * Issued when execution context is destroyed.
3999
+ */
4000
+ once(event: "Runtime.executionContextDestroyed", listener: (message: InspectorNotification<Runtime.ExecutionContextDestroyedEventDataType>) => void): this;
4001
+ /**
4002
+ * Issued when all executionContexts were cleared in browser
4003
+ */
4004
+ once(event: "Runtime.executionContextsCleared", listener: () => void): this;
4005
+ /**
4006
+ * Issued when exception was thrown and unhandled.
4007
+ */
4008
+ once(event: "Runtime.exceptionThrown", listener: (message: InspectorNotification<Runtime.ExceptionThrownEventDataType>) => void): this;
4009
+ /**
4010
+ * Issued when unhandled exception was revoked.
4011
+ */
4012
+ once(event: "Runtime.exceptionRevoked", listener: (message: InspectorNotification<Runtime.ExceptionRevokedEventDataType>) => void): this;
4013
+ /**
4014
+ * Issued when console API was called.
4015
+ */
4016
+ once(event: "Runtime.consoleAPICalled", listener: (message: InspectorNotification<Runtime.ConsoleAPICalledEventDataType>) => void): this;
4017
+ /**
4018
+ * Issued when object should be inspected (for example, as a result of inspect() command line API call).
4019
+ */
4020
+ once(event: "Runtime.inspectRequested", listener: (message: InspectorNotification<Runtime.InspectRequestedEventDataType>) => void): this;
4021
+ /**
4022
+ * Fired when virtual machine parses script. This event is also fired for all known and uncollected scripts upon enabling debugger.
4023
+ */
4024
+ once(event: "Debugger.scriptParsed", listener: (message: InspectorNotification<Debugger.ScriptParsedEventDataType>) => void): this;
4025
+ /**
4026
+ * Fired when virtual machine fails to parse the script.
4027
+ */
4028
+ once(event: "Debugger.scriptFailedToParse", listener: (message: InspectorNotification<Debugger.ScriptFailedToParseEventDataType>) => void): this;
4029
+ /**
4030
+ * Fired when breakpoint is resolved to an actual script and location.
4031
+ */
4032
+ once(event: "Debugger.breakpointResolved", listener: (message: InspectorNotification<Debugger.BreakpointResolvedEventDataType>) => void): this;
4033
+ /**
4034
+ * Fired when the virtual machine stopped on breakpoint or exception or any other stop criteria.
4035
+ */
4036
+ once(event: "Debugger.paused", listener: (message: InspectorNotification<Debugger.PausedEventDataType>) => void): this;
4037
+ /**
4038
+ * Fired when the virtual machine resumed execution.
4039
+ */
4040
+ once(event: "Debugger.resumed", listener: () => void): this;
4041
+ /**
4042
+ * Issued when new console message is added.
4043
+ */
4044
+ once(event: "Console.messageAdded", listener: (message: InspectorNotification<Console.MessageAddedEventDataType>) => void): this;
4045
+ /**
4046
+ * Sent when new profile recording is started using console.profile() call.
4047
+ */
4048
+ once(event: "Profiler.consoleProfileStarted", listener: (message: InspectorNotification<Profiler.ConsoleProfileStartedEventDataType>) => void): this;
4049
+ once(event: "Profiler.consoleProfileFinished", listener: (message: InspectorNotification<Profiler.ConsoleProfileFinishedEventDataType>) => void): this;
4050
+ once(event: "HeapProfiler.addHeapSnapshotChunk", listener: (message: InspectorNotification<HeapProfiler.AddHeapSnapshotChunkEventDataType>) => void): this;
4051
+ once(event: "HeapProfiler.resetProfiles", listener: () => void): this;
4052
+ once(event: "HeapProfiler.reportHeapSnapshotProgress", listener: (message: InspectorNotification<HeapProfiler.ReportHeapSnapshotProgressEventDataType>) => void): this;
4053
+ /**
4054
+ * If heap objects tracking has been started then backend regularly sends a current value for last seen object id and corresponding timestamp. If the were changes in the heap since last event then one or more heapStatsUpdate events will be sent before a new lastSeenObjectId event.
4055
+ */
4056
+ once(event: "HeapProfiler.lastSeenObjectId", listener: (message: InspectorNotification<HeapProfiler.LastSeenObjectIdEventDataType>) => void): this;
4057
+ /**
4058
+ * If heap objects tracking has been started then backend may send update for one or more fragments
4059
+ */
4060
+ once(event: "HeapProfiler.heapStatsUpdate", listener: (message: InspectorNotification<HeapProfiler.HeapStatsUpdateEventDataType>) => void): this;
4061
+ /**
4062
+ * Fired when page is about to send HTTP request.
4063
+ */
4064
+ once(event: "Network.requestWillBeSent", listener: (message: InspectorNotification<Network.RequestWillBeSentEventDataType>) => void): this;
4065
+ /**
4066
+ * Fired when HTTP response is available.
4067
+ */
4068
+ once(event: "Network.responseReceived", listener: (message: InspectorNotification<Network.ResponseReceivedEventDataType>) => void): this;
4069
+ once(event: "Network.loadingFailed", listener: (message: InspectorNotification<Network.LoadingFailedEventDataType>) => void): this;
4070
+ once(event: "Network.loadingFinished", listener: (message: InspectorNotification<Network.LoadingFinishedEventDataType>) => void): this;
4071
+ /**
4072
+ * Fired when data chunk was received over the network.
4073
+ */
4074
+ once(event: "Network.dataReceived", listener: (message: InspectorNotification<Network.DataReceivedEventDataType>) => void): this;
4075
+ /**
4076
+ * Fired upon WebSocket creation.
4077
+ */
4078
+ once(event: "Network.webSocketCreated", listener: (message: InspectorNotification<Network.WebSocketCreatedEventDataType>) => void): this;
4079
+ /**
4080
+ * Fired when WebSocket is closed.
4081
+ */
4082
+ once(event: "Network.webSocketClosed", listener: (message: InspectorNotification<Network.WebSocketClosedEventDataType>) => void): this;
4083
+ /**
4084
+ * Fired when WebSocket handshake response becomes available.
4085
+ */
4086
+ once(event: "Network.webSocketHandshakeResponseReceived", listener: (message: InspectorNotification<Network.WebSocketHandshakeResponseReceivedEventDataType>) => void): this;
4087
+ /**
4088
+ * This event is fired instead of `Runtime.executionContextDestroyed` when
4089
+ * enabled.
4090
+ * It is fired when the Node process finished all code execution and is
4091
+ * waiting for all frontends to disconnect.
4092
+ */
4093
+ once(event: "NodeRuntime.waitingForDisconnect", listener: () => void): this;
4094
+ /**
4095
+ * This event is fired when the runtime is waiting for the debugger. For
4096
+ * example, when inspector.waitingForDebugger is called
4097
+ */
4098
+ once(event: "NodeRuntime.waitingForDebugger", listener: () => void): this;
4099
+ /**
4100
+ * Contains an bucket of collected trace events.
4101
+ */
4102
+ once(event: "NodeTracing.dataCollected", listener: (message: InspectorNotification<NodeTracing.DataCollectedEventDataType>) => void): this;
4103
+ /**
4104
+ * Signals that tracing is stopped and there is no trace buffers pending flush, all data were
4105
+ * delivered via dataCollected events.
4106
+ */
4107
+ once(event: "NodeTracing.tracingComplete", listener: () => void): this;
4108
+ /**
4109
+ * Issued when attached to a worker.
4110
+ */
4111
+ once(event: "NodeWorker.attachedToWorker", listener: (message: InspectorNotification<NodeWorker.AttachedToWorkerEventDataType>) => void): this;
4112
+ /**
4113
+ * Issued when detached from the worker.
4114
+ */
4115
+ once(event: "NodeWorker.detachedFromWorker", listener: (message: InspectorNotification<NodeWorker.DetachedFromWorkerEventDataType>) => void): this;
4116
+ /**
4117
+ * Notifies about a new protocol message received from the session
4118
+ * (session ID is provided in attachedToWorker notification).
4119
+ */
4120
+ once(event: "NodeWorker.receivedMessageFromWorker", listener: (message: InspectorNotification<NodeWorker.ReceivedMessageFromWorkerEventDataType>) => void): this;
4121
+ once(event: "Target.targetCreated", listener: (message: InspectorNotification<Target.TargetCreatedEventDataType>) => void): this;
4122
+ once(event: "Target.attachedToTarget", listener: (message: InspectorNotification<Target.AttachedToTargetEventDataType>) => void): this;
4123
+ once(event: "DOMStorage.domStorageItemAdded", listener: (message: InspectorNotification<DOMStorage.DomStorageItemAddedEventDataType>) => void): this;
4124
+ once(event: "DOMStorage.domStorageItemRemoved", listener: (message: InspectorNotification<DOMStorage.DomStorageItemRemovedEventDataType>) => void): this;
4125
+ once(event: "DOMStorage.domStorageItemUpdated", listener: (message: InspectorNotification<DOMStorage.DomStorageItemUpdatedEventDataType>) => void): this;
4126
+ once(event: "DOMStorage.domStorageItemsCleared", listener: (message: InspectorNotification<DOMStorage.DomStorageItemsClearedEventDataType>) => void): this;
4127
+ prependListener(event: string, listener: (...args: any[]) => void): this;
4128
+ /**
4129
+ * Emitted when any notification from the V8 Inspector is received.
4130
+ */
4131
+ prependListener(event: "inspectorNotification", listener: (message: InspectorNotification<object>) => void): this;
4132
+ /**
4133
+ * Issued when new execution context is created.
4134
+ */
4135
+ prependListener(event: "Runtime.executionContextCreated", listener: (message: InspectorNotification<Runtime.ExecutionContextCreatedEventDataType>) => void): this;
4136
+ /**
4137
+ * Issued when execution context is destroyed.
4138
+ */
4139
+ prependListener(event: "Runtime.executionContextDestroyed", listener: (message: InspectorNotification<Runtime.ExecutionContextDestroyedEventDataType>) => void): this;
4140
+ /**
4141
+ * Issued when all executionContexts were cleared in browser
4142
+ */
4143
+ prependListener(event: "Runtime.executionContextsCleared", listener: () => void): this;
4144
+ /**
4145
+ * Issued when exception was thrown and unhandled.
4146
+ */
4147
+ prependListener(event: "Runtime.exceptionThrown", listener: (message: InspectorNotification<Runtime.ExceptionThrownEventDataType>) => void): this;
4148
+ /**
4149
+ * Issued when unhandled exception was revoked.
4150
+ */
4151
+ prependListener(event: "Runtime.exceptionRevoked", listener: (message: InspectorNotification<Runtime.ExceptionRevokedEventDataType>) => void): this;
4152
+ /**
4153
+ * Issued when console API was called.
4154
+ */
4155
+ prependListener(event: "Runtime.consoleAPICalled", listener: (message: InspectorNotification<Runtime.ConsoleAPICalledEventDataType>) => void): this;
4156
+ /**
4157
+ * Issued when object should be inspected (for example, as a result of inspect() command line API call).
4158
+ */
4159
+ prependListener(event: "Runtime.inspectRequested", listener: (message: InspectorNotification<Runtime.InspectRequestedEventDataType>) => void): this;
4160
+ /**
4161
+ * Fired when virtual machine parses script. This event is also fired for all known and uncollected scripts upon enabling debugger.
4162
+ */
4163
+ prependListener(event: "Debugger.scriptParsed", listener: (message: InspectorNotification<Debugger.ScriptParsedEventDataType>) => void): this;
4164
+ /**
4165
+ * Fired when virtual machine fails to parse the script.
4166
+ */
4167
+ prependListener(event: "Debugger.scriptFailedToParse", listener: (message: InspectorNotification<Debugger.ScriptFailedToParseEventDataType>) => void): this;
4168
+ /**
4169
+ * Fired when breakpoint is resolved to an actual script and location.
4170
+ */
4171
+ prependListener(event: "Debugger.breakpointResolved", listener: (message: InspectorNotification<Debugger.BreakpointResolvedEventDataType>) => void): this;
4172
+ /**
4173
+ * Fired when the virtual machine stopped on breakpoint or exception or any other stop criteria.
4174
+ */
4175
+ prependListener(event: "Debugger.paused", listener: (message: InspectorNotification<Debugger.PausedEventDataType>) => void): this;
4176
+ /**
4177
+ * Fired when the virtual machine resumed execution.
4178
+ */
4179
+ prependListener(event: "Debugger.resumed", listener: () => void): this;
4180
+ /**
4181
+ * Issued when new console message is added.
4182
+ */
4183
+ prependListener(event: "Console.messageAdded", listener: (message: InspectorNotification<Console.MessageAddedEventDataType>) => void): this;
4184
+ /**
4185
+ * Sent when new profile recording is started using console.profile() call.
4186
+ */
4187
+ prependListener(event: "Profiler.consoleProfileStarted", listener: (message: InspectorNotification<Profiler.ConsoleProfileStartedEventDataType>) => void): this;
4188
+ prependListener(event: "Profiler.consoleProfileFinished", listener: (message: InspectorNotification<Profiler.ConsoleProfileFinishedEventDataType>) => void): this;
4189
+ prependListener(event: "HeapProfiler.addHeapSnapshotChunk", listener: (message: InspectorNotification<HeapProfiler.AddHeapSnapshotChunkEventDataType>) => void): this;
4190
+ prependListener(event: "HeapProfiler.resetProfiles", listener: () => void): this;
4191
+ prependListener(event: "HeapProfiler.reportHeapSnapshotProgress", listener: (message: InspectorNotification<HeapProfiler.ReportHeapSnapshotProgressEventDataType>) => void): this;
4192
+ /**
4193
+ * If heap objects tracking has been started then backend regularly sends a current value for last seen object id and corresponding timestamp. If the were changes in the heap since last event then one or more heapStatsUpdate events will be sent before a new lastSeenObjectId event.
4194
+ */
4195
+ prependListener(event: "HeapProfiler.lastSeenObjectId", listener: (message: InspectorNotification<HeapProfiler.LastSeenObjectIdEventDataType>) => void): this;
4196
+ /**
4197
+ * If heap objects tracking has been started then backend may send update for one or more fragments
4198
+ */
4199
+ prependListener(event: "HeapProfiler.heapStatsUpdate", listener: (message: InspectorNotification<HeapProfiler.HeapStatsUpdateEventDataType>) => void): this;
4200
+ /**
4201
+ * Fired when page is about to send HTTP request.
4202
+ */
4203
+ prependListener(event: "Network.requestWillBeSent", listener: (message: InspectorNotification<Network.RequestWillBeSentEventDataType>) => void): this;
4204
+ /**
4205
+ * Fired when HTTP response is available.
4206
+ */
4207
+ prependListener(event: "Network.responseReceived", listener: (message: InspectorNotification<Network.ResponseReceivedEventDataType>) => void): this;
4208
+ prependListener(event: "Network.loadingFailed", listener: (message: InspectorNotification<Network.LoadingFailedEventDataType>) => void): this;
4209
+ prependListener(event: "Network.loadingFinished", listener: (message: InspectorNotification<Network.LoadingFinishedEventDataType>) => void): this;
4210
+ /**
4211
+ * Fired when data chunk was received over the network.
4212
+ */
4213
+ prependListener(event: "Network.dataReceived", listener: (message: InspectorNotification<Network.DataReceivedEventDataType>) => void): this;
4214
+ /**
4215
+ * Fired upon WebSocket creation.
4216
+ */
4217
+ prependListener(event: "Network.webSocketCreated", listener: (message: InspectorNotification<Network.WebSocketCreatedEventDataType>) => void): this;
4218
+ /**
4219
+ * Fired when WebSocket is closed.
4220
+ */
4221
+ prependListener(event: "Network.webSocketClosed", listener: (message: InspectorNotification<Network.WebSocketClosedEventDataType>) => void): this;
4222
+ /**
4223
+ * Fired when WebSocket handshake response becomes available.
4224
+ */
4225
+ prependListener(event: "Network.webSocketHandshakeResponseReceived", listener: (message: InspectorNotification<Network.WebSocketHandshakeResponseReceivedEventDataType>) => void): this;
4226
+ /**
4227
+ * This event is fired instead of `Runtime.executionContextDestroyed` when
4228
+ * enabled.
4229
+ * It is fired when the Node process finished all code execution and is
4230
+ * waiting for all frontends to disconnect.
4231
+ */
4232
+ prependListener(event: "NodeRuntime.waitingForDisconnect", listener: () => void): this;
4233
+ /**
4234
+ * This event is fired when the runtime is waiting for the debugger. For
4235
+ * example, when inspector.waitingForDebugger is called
4236
+ */
4237
+ prependListener(event: "NodeRuntime.waitingForDebugger", listener: () => void): this;
4238
+ /**
4239
+ * Contains an bucket of collected trace events.
4240
+ */
4241
+ prependListener(event: "NodeTracing.dataCollected", listener: (message: InspectorNotification<NodeTracing.DataCollectedEventDataType>) => void): this;
4242
+ /**
4243
+ * Signals that tracing is stopped and there is no trace buffers pending flush, all data were
4244
+ * delivered via dataCollected events.
4245
+ */
4246
+ prependListener(event: "NodeTracing.tracingComplete", listener: () => void): this;
4247
+ /**
4248
+ * Issued when attached to a worker.
4249
+ */
4250
+ prependListener(event: "NodeWorker.attachedToWorker", listener: (message: InspectorNotification<NodeWorker.AttachedToWorkerEventDataType>) => void): this;
4251
+ /**
4252
+ * Issued when detached from the worker.
4253
+ */
4254
+ prependListener(event: "NodeWorker.detachedFromWorker", listener: (message: InspectorNotification<NodeWorker.DetachedFromWorkerEventDataType>) => void): this;
4255
+ /**
4256
+ * Notifies about a new protocol message received from the session
4257
+ * (session ID is provided in attachedToWorker notification).
4258
+ */
4259
+ prependListener(event: "NodeWorker.receivedMessageFromWorker", listener: (message: InspectorNotification<NodeWorker.ReceivedMessageFromWorkerEventDataType>) => void): this;
4260
+ prependListener(event: "Target.targetCreated", listener: (message: InspectorNotification<Target.TargetCreatedEventDataType>) => void): this;
4261
+ prependListener(event: "Target.attachedToTarget", listener: (message: InspectorNotification<Target.AttachedToTargetEventDataType>) => void): this;
4262
+ prependListener(event: "DOMStorage.domStorageItemAdded", listener: (message: InspectorNotification<DOMStorage.DomStorageItemAddedEventDataType>) => void): this;
4263
+ prependListener(event: "DOMStorage.domStorageItemRemoved", listener: (message: InspectorNotification<DOMStorage.DomStorageItemRemovedEventDataType>) => void): this;
4264
+ prependListener(event: "DOMStorage.domStorageItemUpdated", listener: (message: InspectorNotification<DOMStorage.DomStorageItemUpdatedEventDataType>) => void): this;
4265
+ prependListener(event: "DOMStorage.domStorageItemsCleared", listener: (message: InspectorNotification<DOMStorage.DomStorageItemsClearedEventDataType>) => void): this;
4266
+ prependOnceListener(event: string, listener: (...args: any[]) => void): this;
4267
+ /**
4268
+ * Emitted when any notification from the V8 Inspector is received.
4269
+ */
4270
+ prependOnceListener(event: "inspectorNotification", listener: (message: InspectorNotification<object>) => void): this;
4271
+ /**
4272
+ * Issued when new execution context is created.
4273
+ */
4274
+ prependOnceListener(event: "Runtime.executionContextCreated", listener: (message: InspectorNotification<Runtime.ExecutionContextCreatedEventDataType>) => void): this;
4275
+ /**
4276
+ * Issued when execution context is destroyed.
4277
+ */
4278
+ prependOnceListener(event: "Runtime.executionContextDestroyed", listener: (message: InspectorNotification<Runtime.ExecutionContextDestroyedEventDataType>) => void): this;
4279
+ /**
4280
+ * Issued when all executionContexts were cleared in browser
4281
+ */
4282
+ prependOnceListener(event: "Runtime.executionContextsCleared", listener: () => void): this;
4283
+ /**
4284
+ * Issued when exception was thrown and unhandled.
4285
+ */
4286
+ prependOnceListener(event: "Runtime.exceptionThrown", listener: (message: InspectorNotification<Runtime.ExceptionThrownEventDataType>) => void): this;
4287
+ /**
4288
+ * Issued when unhandled exception was revoked.
4289
+ */
4290
+ prependOnceListener(event: "Runtime.exceptionRevoked", listener: (message: InspectorNotification<Runtime.ExceptionRevokedEventDataType>) => void): this;
4291
+ /**
4292
+ * Issued when console API was called.
4293
+ */
4294
+ prependOnceListener(event: "Runtime.consoleAPICalled", listener: (message: InspectorNotification<Runtime.ConsoleAPICalledEventDataType>) => void): this;
4295
+ /**
4296
+ * Issued when object should be inspected (for example, as a result of inspect() command line API call).
4297
+ */
4298
+ prependOnceListener(event: "Runtime.inspectRequested", listener: (message: InspectorNotification<Runtime.InspectRequestedEventDataType>) => void): this;
4299
+ /**
4300
+ * Fired when virtual machine parses script. This event is also fired for all known and uncollected scripts upon enabling debugger.
4301
+ */
4302
+ prependOnceListener(event: "Debugger.scriptParsed", listener: (message: InspectorNotification<Debugger.ScriptParsedEventDataType>) => void): this;
4303
+ /**
4304
+ * Fired when virtual machine fails to parse the script.
4305
+ */
4306
+ prependOnceListener(event: "Debugger.scriptFailedToParse", listener: (message: InspectorNotification<Debugger.ScriptFailedToParseEventDataType>) => void): this;
4307
+ /**
4308
+ * Fired when breakpoint is resolved to an actual script and location.
4309
+ */
4310
+ prependOnceListener(event: "Debugger.breakpointResolved", listener: (message: InspectorNotification<Debugger.BreakpointResolvedEventDataType>) => void): this;
4311
+ /**
4312
+ * Fired when the virtual machine stopped on breakpoint or exception or any other stop criteria.
4313
+ */
4314
+ prependOnceListener(event: "Debugger.paused", listener: (message: InspectorNotification<Debugger.PausedEventDataType>) => void): this;
4315
+ /**
4316
+ * Fired when the virtual machine resumed execution.
4317
+ */
4318
+ prependOnceListener(event: "Debugger.resumed", listener: () => void): this;
4319
+ /**
4320
+ * Issued when new console message is added.
4321
+ */
4322
+ prependOnceListener(event: "Console.messageAdded", listener: (message: InspectorNotification<Console.MessageAddedEventDataType>) => void): this;
4323
+ /**
4324
+ * Sent when new profile recording is started using console.profile() call.
4325
+ */
4326
+ prependOnceListener(event: "Profiler.consoleProfileStarted", listener: (message: InspectorNotification<Profiler.ConsoleProfileStartedEventDataType>) => void): this;
4327
+ prependOnceListener(event: "Profiler.consoleProfileFinished", listener: (message: InspectorNotification<Profiler.ConsoleProfileFinishedEventDataType>) => void): this;
4328
+ prependOnceListener(event: "HeapProfiler.addHeapSnapshotChunk", listener: (message: InspectorNotification<HeapProfiler.AddHeapSnapshotChunkEventDataType>) => void): this;
4329
+ prependOnceListener(event: "HeapProfiler.resetProfiles", listener: () => void): this;
4330
+ prependOnceListener(event: "HeapProfiler.reportHeapSnapshotProgress", listener: (message: InspectorNotification<HeapProfiler.ReportHeapSnapshotProgressEventDataType>) => void): this;
4331
+ /**
4332
+ * If heap objects tracking has been started then backend regularly sends a current value for last seen object id and corresponding timestamp. If the were changes in the heap since last event then one or more heapStatsUpdate events will be sent before a new lastSeenObjectId event.
4333
+ */
4334
+ prependOnceListener(event: "HeapProfiler.lastSeenObjectId", listener: (message: InspectorNotification<HeapProfiler.LastSeenObjectIdEventDataType>) => void): this;
4335
+ /**
4336
+ * If heap objects tracking has been started then backend may send update for one or more fragments
4337
+ */
4338
+ prependOnceListener(event: "HeapProfiler.heapStatsUpdate", listener: (message: InspectorNotification<HeapProfiler.HeapStatsUpdateEventDataType>) => void): this;
4339
+ /**
4340
+ * Fired when page is about to send HTTP request.
4341
+ */
4342
+ prependOnceListener(event: "Network.requestWillBeSent", listener: (message: InspectorNotification<Network.RequestWillBeSentEventDataType>) => void): this;
4343
+ /**
4344
+ * Fired when HTTP response is available.
4345
+ */
4346
+ prependOnceListener(event: "Network.responseReceived", listener: (message: InspectorNotification<Network.ResponseReceivedEventDataType>) => void): this;
4347
+ prependOnceListener(event: "Network.loadingFailed", listener: (message: InspectorNotification<Network.LoadingFailedEventDataType>) => void): this;
4348
+ prependOnceListener(event: "Network.loadingFinished", listener: (message: InspectorNotification<Network.LoadingFinishedEventDataType>) => void): this;
4349
+ /**
4350
+ * Fired when data chunk was received over the network.
4351
+ */
4352
+ prependOnceListener(event: "Network.dataReceived", listener: (message: InspectorNotification<Network.DataReceivedEventDataType>) => void): this;
4353
+ /**
4354
+ * Fired upon WebSocket creation.
4355
+ */
4356
+ prependOnceListener(event: "Network.webSocketCreated", listener: (message: InspectorNotification<Network.WebSocketCreatedEventDataType>) => void): this;
4357
+ /**
4358
+ * Fired when WebSocket is closed.
4359
+ */
4360
+ prependOnceListener(event: "Network.webSocketClosed", listener: (message: InspectorNotification<Network.WebSocketClosedEventDataType>) => void): this;
4361
+ /**
4362
+ * Fired when WebSocket handshake response becomes available.
4363
+ */
4364
+ prependOnceListener(event: "Network.webSocketHandshakeResponseReceived", listener: (message: InspectorNotification<Network.WebSocketHandshakeResponseReceivedEventDataType>) => void): this;
4365
+ /**
4366
+ * This event is fired instead of `Runtime.executionContextDestroyed` when
4367
+ * enabled.
4368
+ * It is fired when the Node process finished all code execution and is
4369
+ * waiting for all frontends to disconnect.
4370
+ */
4371
+ prependOnceListener(event: "NodeRuntime.waitingForDisconnect", listener: () => void): this;
4372
+ /**
4373
+ * This event is fired when the runtime is waiting for the debugger. For
4374
+ * example, when inspector.waitingForDebugger is called
4375
+ */
4376
+ prependOnceListener(event: "NodeRuntime.waitingForDebugger", listener: () => void): this;
4377
+ /**
4378
+ * Contains an bucket of collected trace events.
4379
+ */
4380
+ prependOnceListener(event: "NodeTracing.dataCollected", listener: (message: InspectorNotification<NodeTracing.DataCollectedEventDataType>) => void): this;
4381
+ /**
4382
+ * Signals that tracing is stopped and there is no trace buffers pending flush, all data were
4383
+ * delivered via dataCollected events.
4384
+ */
4385
+ prependOnceListener(event: "NodeTracing.tracingComplete", listener: () => void): this;
4386
+ /**
4387
+ * Issued when attached to a worker.
4388
+ */
4389
+ prependOnceListener(event: "NodeWorker.attachedToWorker", listener: (message: InspectorNotification<NodeWorker.AttachedToWorkerEventDataType>) => void): this;
4390
+ /**
4391
+ * Issued when detached from the worker.
4392
+ */
4393
+ prependOnceListener(event: "NodeWorker.detachedFromWorker", listener: (message: InspectorNotification<NodeWorker.DetachedFromWorkerEventDataType>) => void): this;
4394
+ /**
4395
+ * Notifies about a new protocol message received from the session
4396
+ * (session ID is provided in attachedToWorker notification).
4397
+ */
4398
+ prependOnceListener(event: "NodeWorker.receivedMessageFromWorker", listener: (message: InspectorNotification<NodeWorker.ReceivedMessageFromWorkerEventDataType>) => void): this;
4399
+ prependOnceListener(event: "Target.targetCreated", listener: (message: InspectorNotification<Target.TargetCreatedEventDataType>) => void): this;
4400
+ prependOnceListener(event: "Target.attachedToTarget", listener: (message: InspectorNotification<Target.AttachedToTargetEventDataType>) => void): this;
4401
+ prependOnceListener(event: "DOMStorage.domStorageItemAdded", listener: (message: InspectorNotification<DOMStorage.DomStorageItemAddedEventDataType>) => void): this;
4402
+ prependOnceListener(event: "DOMStorage.domStorageItemRemoved", listener: (message: InspectorNotification<DOMStorage.DomStorageItemRemovedEventDataType>) => void): this;
4403
+ prependOnceListener(event: "DOMStorage.domStorageItemUpdated", listener: (message: InspectorNotification<DOMStorage.DomStorageItemUpdatedEventDataType>) => void): this;
4404
+ prependOnceListener(event: "DOMStorage.domStorageItemsCleared", listener: (message: InspectorNotification<DOMStorage.DomStorageItemsClearedEventDataType>) => void): this;
4405
+ }
4406
+ }