@lcap/nasl 0.3.10-beta → 0.3.10-beta.10

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 (126) hide show
  1. package/out/service/app/api.d.ts +1 -15
  2. package/out/service/app/api.js +7 -17
  3. package/out/service/app/api.js.map +1 -1
  4. package/out/service/create/errHandles.js +12 -0
  5. package/out/service/create/errHandles.js.map +1 -1
  6. package/out/service/create/index.js +3 -0
  7. package/out/service/create/index.js.map +1 -1
  8. package/out/service/logic/logic.d.ts +26 -17
  9. package/out/service/logic/logic.js +6 -0
  10. package/out/service/logic/logic.js.map +1 -1
  11. package/out/types/app/App.d.ts +5 -4
  12. package/out/types/app/App.js +31 -25
  13. package/out/types/app/App.js.map +1 -1
  14. package/out/types/app/History.js +3 -2
  15. package/out/types/app/History.js.map +1 -1
  16. package/out/types/app/Service.d.ts +3 -0
  17. package/out/types/app/Service.js +10 -2
  18. package/out/types/app/Service.js.map +1 -1
  19. package/out/types/cacheData.js.map +1 -1
  20. package/out/types/data/Entity.d.ts +4 -0
  21. package/out/types/data/Entity.js +8 -0
  22. package/out/types/data/Entity.js.map +1 -1
  23. package/out/types/data/EntityProperty.d.ts +5 -0
  24. package/out/types/data/EntityProperty.js +16 -0
  25. package/out/types/data/EntityProperty.js.map +1 -1
  26. package/out/types/data/dataTypes.js +1 -1
  27. package/out/types/data/dataTypes.js.map +1 -1
  28. package/out/types/data/genBlock/genCurdEditTableBlock.d.ts +3 -0
  29. package/out/types/data/genBlock/genCurdEditTableBlock.js +578 -0
  30. package/out/types/data/genBlock/genCurdEditTableBlock.js.map +1 -0
  31. package/out/types/data/genBlock/genEditTableBlock.d.ts +234 -0
  32. package/out/types/data/genBlock/genEditTableBlock.js +419 -0
  33. package/out/types/data/genBlock/genEditTableBlock.js.map +1 -0
  34. package/out/types/data/genBlock/genQueryComponent.d.ts +20 -0
  35. package/out/types/data/genBlock/genQueryComponent.js +57 -1
  36. package/out/types/data/genBlock/genQueryComponent.js.map +1 -1
  37. package/out/types/data/genBlock/genTableBlock.js +9 -5
  38. package/out/types/data/genBlock/genTableBlock.js.map +1 -1
  39. package/out/types/data/genBlock/index.d.ts +2 -0
  40. package/out/types/data/genBlock/index.js +2 -0
  41. package/out/types/data/genBlock/index.js.map +1 -1
  42. package/out/types/data/genBlock/utils.d.ts +7 -0
  43. package/out/types/data/genBlock/utils.js +38 -1
  44. package/out/types/data/genBlock/utils.js.map +1 -1
  45. package/out/types/index.d.ts +2 -4
  46. package/out/types/index.js +3 -6
  47. package/out/types/index.js.map +1 -1
  48. package/out/types/logic/Logic.d.ts +4 -12
  49. package/out/types/logic/Logic.js +35 -24
  50. package/out/types/logic/Logic.js.map +1 -1
  51. package/out/types/logic/LogicItem.d.ts +1 -20
  52. package/out/types/logic/LogicItem.js +5 -191
  53. package/out/types/logic/LogicItem.js.map +1 -1
  54. package/out/types/logic/Param.js +5 -13
  55. package/out/types/logic/Param.js.map +1 -1
  56. package/out/types/logic/Return.js +3 -11
  57. package/out/types/logic/Return.js.map +1 -1
  58. package/out/types/logic/Variable.js +3 -6
  59. package/out/types/logic/Variable.js.map +1 -1
  60. package/out/types/logic/translator.js +39 -8
  61. package/out/types/logic/translator.js.map +1 -1
  62. package/out/types/page/Element.d.ts +21 -2
  63. package/out/types/page/Element.js +89 -7
  64. package/out/types/page/Element.js.map +1 -1
  65. package/out/types/page/Page.d.ts +4 -0
  66. package/out/types/page/Page.js +7 -0
  67. package/out/types/page/Page.js.map +1 -1
  68. package/out/types/page/View.d.ts +19 -16
  69. package/out/types/page/View.js +73 -15
  70. package/out/types/page/View.js.map +1 -1
  71. package/out/types/page/ViewVariable.js +0 -6
  72. package/out/types/page/ViewVariable.js.map +1 -1
  73. package/out/types/process/ProcessParam.js +3 -1
  74. package/out/types/process/ProcessParam.js.map +1 -1
  75. package/out/types/utils/index.d.ts +1 -0
  76. package/out/types/utils/index.js +16 -7
  77. package/out/types/utils/index.js.map +1 -1
  78. package/package.json +1 -2
  79. package/src/service/app/api.js +8 -17
  80. package/src/service/create/errHandles.js +12 -0
  81. package/src/service/create/index.js +4 -0
  82. package/src/service/logic/logic.js +6 -0
  83. package/src/types/app/App.ts +37 -28
  84. package/src/types/app/History.ts +3 -2
  85. package/src/types/app/Service.ts +14 -5
  86. package/src/types/cacheData.ts +7 -7
  87. package/src/types/data/Entity.ts +7 -0
  88. package/src/types/data/EntityProperty.ts +12 -0
  89. package/src/types/data/dataTypes.ts +1 -1
  90. package/src/types/data/genBlock/genCurdEditTableBlock.ts +581 -0
  91. package/src/types/data/genBlock/genEditTableBlock.ts +470 -0
  92. package/src/types/data/genBlock/genQueryComponent.ts +56 -0
  93. package/src/types/data/genBlock/genTableBlock.ts +14 -10
  94. package/src/types/data/genBlock/index.ts +2 -0
  95. package/src/types/data/genBlock/utils.ts +38 -0
  96. package/src/types/index.ts +2 -4
  97. package/src/types/logic/Logic.ts +45 -41
  98. package/src/types/logic/LogicItem.ts +12 -217
  99. package/src/types/logic/Param.ts +25 -35
  100. package/src/types/logic/Return.ts +18 -26
  101. package/src/types/logic/Variable.ts +18 -20
  102. package/src/types/logic/translator.js +125 -154
  103. package/src/types/page/Element.ts +160 -73
  104. package/src/types/page/Page.ts +7 -0
  105. package/src/types/page/View.ts +112 -61
  106. package/src/types/page/ViewVariable.ts +13 -19
  107. package/src/types/page/dist/View.js +727 -0
  108. package/src/types/process/ProcessParam.ts +4 -1
  109. package/src/types/utils/index.ts +16 -7
  110. package/tsconfig.json +1 -1
  111. package/out/service/debugger/debugger.d.ts +0 -3
  112. package/out/service/debugger/debugger.js +0 -95
  113. package/out/service/debugger/debugger.js.map +0 -1
  114. package/out/test/units/config.spec.d.ts +0 -1
  115. package/out/test/units/config.spec.js +0 -12
  116. package/out/test/units/config.spec.js.map +0 -1
  117. package/out/types/logic/BreakPoint.d.ts +0 -42
  118. package/out/types/logic/BreakPoint.js +0 -155
  119. package/out/types/logic/BreakPoint.js.map +0 -1
  120. package/out/types/logic/Debugger.d.ts +0 -156
  121. package/out/types/logic/Debugger.js +0 -912
  122. package/out/types/logic/Debugger.js.map +0 -1
  123. package/src/service/debugger/debugger.js +0 -90
  124. package/src/types/logic/BreakPoint.ts +0 -200
  125. package/src/types/logic/Debugger.ts +0 -1140
  126. package/src/types/logic/translator.d.ts +0 -16
@@ -1,16 +0,0 @@
1
-
2
- declare namespace Translator {
3
- export interface FrontEndsourceMap {
4
- [id: string]: {
5
- isLogic: boolean,
6
- node: LogicItem,
7
- from: number,
8
- to: number,
9
- }
10
- }
11
- }
12
- declare function Translator(source: string, preScript: string): {
13
- output: string,
14
- sourceMap: Translator.FrontEndsourceMap,
15
- };
16
- export = Translator;