@lcap/nasl 3.7.0-beta.11 → 3.7.0-beta.13

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 (69) hide show
  1. package/out/concepts/CallInterface__.js +1 -1
  2. package/out/concepts/CallInterface__.js.map +1 -1
  3. package/out/concepts/CallLogic__.js +1 -1
  4. package/out/concepts/CallLogic__.js.map +1 -1
  5. package/out/concepts/Entity__.d.ts +5 -0
  6. package/out/concepts/Entity__.js +7 -0
  7. package/out/concepts/Entity__.js.map +1 -1
  8. package/out/concepts/FrontendType__.d.ts +4 -0
  9. package/out/concepts/FrontendType__.js +9 -0
  10. package/out/concepts/FrontendType__.js.map +1 -1
  11. package/out/concepts/Frontend__.d.ts +2 -0
  12. package/out/concepts/Frontend__.js +7 -0
  13. package/out/concepts/Frontend__.js.map +1 -1
  14. package/out/concepts/Logic__.d.ts +1 -0
  15. package/out/concepts/Logic__.js +52 -1
  16. package/out/concepts/Logic__.js.map +1 -1
  17. package/out/concepts/Match__.js +1 -1
  18. package/out/concepts/Match__.js.map +1 -1
  19. package/out/concepts/ProcessElementV2__.js +7 -0
  20. package/out/concepts/ProcessElementV2__.js.map +1 -1
  21. package/out/concepts/ProcessV2__.js +2 -2
  22. package/out/concepts/ProcessV2__.js.map +1 -1
  23. package/out/concepts/ViewElement__.d.ts +1 -0
  24. package/out/concepts/ViewElement__.js +23 -1
  25. package/out/concepts/ViewElement__.js.map +1 -1
  26. package/out/concepts/View__.d.ts +2 -0
  27. package/out/concepts/View__.js +29 -1
  28. package/out/concepts/View__.js.map +1 -1
  29. package/out/concepts/basics/stdlib/nasl.processV2.js +1 -1
  30. package/out/generator/genBundleFiles.js +6 -5
  31. package/out/generator/genBundleFiles.js.map +1 -1
  32. package/out/generator/permission.js +2 -2
  33. package/out/generator/permission.js.map +1 -1
  34. package/out/generator/release-body/body.js +17 -0
  35. package/out/generator/release-body/body.js.map +1 -1
  36. package/out/natural/genNaturalTS.js +1 -1
  37. package/out/server/extendBaseNode.js +31 -1
  38. package/out/server/extendBaseNode.js.map +1 -1
  39. package/out/server/getLogics.js +1 -1
  40. package/out/server/getLogics.js.map +1 -1
  41. package/out/server/naslServer.js +4 -10
  42. package/out/server/naslServer.js.map +1 -1
  43. package/out/templator/genCreateBlock.d.ts +6 -3
  44. package/out/templator/genCreateBlock.js +11 -8
  45. package/out/templator/genCreateBlock.js.map +1 -1
  46. package/package.json +1 -1
  47. package/sandbox/stdlib/nasl.processV2.ts +1 -1
  48. package/src/concepts/CallInterface__.ts +1 -1
  49. package/src/concepts/CallLogic__.ts +1 -1
  50. package/src/concepts/Entity__.ts +7 -0
  51. package/src/concepts/FrontendType__.ts +8 -0
  52. package/src/concepts/Frontend__.ts +8 -0
  53. package/src/concepts/Logic__.ts +47 -2
  54. package/src/concepts/Match__.ts +1 -1
  55. package/src/concepts/ProcessElementV2__.ts +7 -0
  56. package/src/concepts/ProcessV2__.ts +2 -2
  57. package/src/concepts/ViewElement__.ts +24 -2
  58. package/src/concepts/View__.ts +31 -1
  59. package/src/concepts/basics/stdlib/nasl.processV2.ts +1 -1
  60. package/src/generator/genBundleFiles.ts +7 -4
  61. package/src/generator/permission.ts +2 -2
  62. package/src/generator/release-body/body.ts +19 -2
  63. package/src/natural/genNaturalTS.ts +1 -1
  64. package/src/server/extendBaseNode.ts +32 -1
  65. package/src/server/getLogics.ts +1 -1
  66. package/src/server/naslServer.ts +5 -11
  67. package/src/templator/genCreateBlock.ts +15 -9
  68. package/ts-worker/bundle.js +591 -0
  69. package/ts-worker/webpack.config.js +1 -2
@@ -10,8 +10,7 @@ module.exports = {
10
10
  bundle: './src/index.js',
11
11
  },
12
12
  output: {
13
- path: path.resolve(__dirname, '../../../public/ts-worker'),
14
- filename: `${pkg.version}.js`,
13
+ path: path.resolve(__dirname),
15
14
  },
16
15
  target: 'webworker',
17
16
  resolve: {