@lcap/nasl 2.22.12-beta.1 → 2.22.12-beta.2
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.
- package/out/breakpoint/generator/AfterStartNode.js +1 -1
- package/out/breakpoint/generator/AfterStartNode.js.map +1 -1
- package/out/breakpoint/generator/BeforeEndNode.js +1 -1
- package/out/breakpoint/generator/BeforeEndNode.js.map +1 -1
- package/out/breakpoint/generator/BreakpointNode.d.ts +3 -0
- package/out/breakpoint/generator/BreakpointNode.js +12 -3
- package/out/breakpoint/generator/BreakpointNode.js.map +1 -1
- package/out/breakpoint/generator/CallbackNode.js +15 -0
- package/out/breakpoint/generator/CallbackNode.js.map +1 -1
- package/out/breakpoint/shared/constants.js +1 -0
- package/out/breakpoint/shared/constants.js.map +1 -1
- package/out/breakpoint/shared/utils.js +12 -6
- package/out/breakpoint/shared/utils.js.map +1 -1
- package/out/common/BaseNode.js +1 -1
- package/out/common/BaseNode.js.map +1 -1
- package/out/common/utils.d.ts +2 -0
- package/out/common/utils.js +18 -0
- package/out/common/utils.js.map +1 -0
- package/out/concepts/AbstractInterface__.d.ts +22 -0
- package/out/concepts/AbstractInterface__.js +56 -0
- package/out/concepts/AbstractInterface__.js.map +1 -0
- package/out/concepts/AuthInterface__.d.ts +5 -3
- package/out/concepts/AuthInterface__.js +11 -22
- package/out/concepts/AuthInterface__.js.map +1 -1
- package/out/concepts/AuthLogicForCallInterface__.d.ts +6 -4
- package/out/concepts/AuthLogicForCallInterface__.js +102 -118
- package/out/concepts/AuthLogicForCallInterface__.js.map +1 -1
- package/out/concepts/AuthLogic__.d.ts +9 -7
- package/out/concepts/AuthLogic__.js +11 -22
- package/out/concepts/AuthLogic__.js.map +1 -1
- package/out/concepts/BackendVariable__.d.ts +30 -23
- package/out/concepts/BackendVariable__.js +179 -130
- package/out/concepts/BackendVariable__.js.map +1 -1
- package/out/concepts/Backend__.d.ts +9 -10
- package/out/concepts/Backend__.js +42 -43
- package/out/concepts/Backend__.js.map +1 -1
- package/out/concepts/Block__.d.ts +84 -0
- package/out/concepts/Block__.js +215 -0
- package/out/concepts/Block__.js.map +1 -0
- package/out/concepts/BusinessComponent__.d.ts +641 -0
- package/out/concepts/BusinessComponent__.js +1901 -0
- package/out/concepts/BusinessComponent__.js.map +1 -0
- package/out/concepts/BusinessLogic__.d.ts +38 -0
- package/out/concepts/BusinessLogic__.js +358 -0
- package/out/concepts/BusinessLogic__.js.map +1 -0
- package/out/concepts/CallAuthInterface__.d.ts +10 -6
- package/out/concepts/CallAuthInterface__.js +84 -60
- package/out/concepts/CallAuthInterface__.js.map +1 -1
- package/out/concepts/CallConnector__.d.ts +7 -5
- package/out/concepts/CallConnector__.js +41 -50
- package/out/concepts/CallConnector__.js.map +1 -1
- package/out/concepts/CallEvent__.d.ts +97 -0
- package/out/concepts/CallEvent__.js +263 -0
- package/out/concepts/CallEvent__.js.map +1 -0
- package/out/concepts/Connection__.d.ts +10 -11
- package/out/concepts/Connection__.js +38 -50
- package/out/concepts/Connection__.js.map +1 -1
- package/out/concepts/ConnectorTrigger__.d.ts +9 -7
- package/out/concepts/ConnectorTrigger__.js +11 -32
- package/out/concepts/ConnectorTrigger__.js.map +1 -1
- package/out/concepts/Connector__.d.ts +382 -23
- package/out/concepts/Connector__.js +581 -121
- package/out/concepts/Connector__.js.map +1 -1
- package/out/concepts/CountersignPolicy__.d.ts +28 -0
- package/out/concepts/CountersignPolicy__.js +62 -0
- package/out/concepts/CountersignPolicy__.js.map +1 -0
- package/out/concepts/DefaultValue__.d.ts +104 -0
- package/out/concepts/DefaultValue__.js +242 -0
- package/out/concepts/DefaultValue__.js.map +1 -0
- package/out/concepts/FrontendType__.d.ts +308 -0
- package/out/concepts/FrontendType__.js +605 -0
- package/out/concepts/FrontendType__.js.map +1 -0
- package/out/concepts/FrontendVariable__.d.ts +15 -1
- package/out/concepts/FrontendVariable__.js +23 -11
- package/out/concepts/FrontendVariable__.js.map +1 -1
- package/out/concepts/I18nInfo__.d.ts +46 -0
- package/out/concepts/I18nInfo__.js +90 -0
- package/out/concepts/I18nInfo__.js.map +1 -0
- package/out/concepts/ImportedInterface__.d.ts +20 -0
- package/out/concepts/ImportedInterface__.js +48 -0
- package/out/concepts/ImportedInterface__.js.map +1 -0
- package/out/concepts/MsgTriggerEvent__.d.ts +10 -8
- package/out/concepts/MsgTriggerEvent__.js +32 -30
- package/out/concepts/MsgTriggerEvent__.js.map +1 -1
- package/out/concepts/MsgTriggerLauncher__.d.ts +7 -5
- package/out/concepts/MsgTriggerLauncher__.js +32 -35
- package/out/concepts/MsgTriggerLauncher__.js.map +1 -1
- package/out/concepts/MultiApprovalPolicy__.d.ts +26 -0
- package/out/concepts/MultiApprovalPolicy__.js +59 -0
- package/out/concepts/MultiApprovalPolicy__.js.map +1 -0
- package/out/concepts/OverriddenLogic__.d.ts +28 -29
- package/out/concepts/OverriddenLogic__.js +268 -273
- package/out/concepts/OverriddenLogic__.js.map +1 -1
- package/out/concepts/ParamWithGroup__.d.ts +39 -0
- package/out/concepts/ParamWithGroup__.js +85 -0
- package/out/concepts/ParamWithGroup__.js.map +1 -0
- package/out/concepts/SequentialPolicy__.d.ts +20 -0
- package/out/concepts/SequentialPolicy__.js +48 -0
- package/out/concepts/SequentialPolicy__.js.map +1 -0
- package/out/concepts/StaticString__.d.ts +49 -0
- package/out/concepts/StaticString__.js +91 -0
- package/out/concepts/StaticString__.js.map +1 -0
- package/out/concepts/TriggerEvent__.d.ts +11 -78
- package/out/concepts/TriggerEvent__.js +24 -118
- package/out/concepts/TriggerEvent__.js.map +1 -1
- package/out/concepts/TriggerLauncher__.d.ts +10 -11
- package/out/concepts/TriggerLauncher__.js +18 -43
- package/out/concepts/TriggerLauncher__.js.map +1 -1
- package/out/concepts/basics/constants.d.ts +1 -0
- package/out/concepts/basics/constants.js +6 -0
- package/out/concepts/basics/constants.js.map +1 -0
- package/out/concepts/basics/stdlib/nasl.http.d.ts +7 -5
- package/out/concepts/basics/stdlib/nasl.http.js +78 -73
- package/out/concepts/basics/stdlib/nasl.http.js.map +1 -1
- package/out/concepts/types__.d.ts +0 -124
- package/out/concepts/types__.js +0 -2
- package/out/concepts/utils/asserts.d.ts +6931 -0
- package/out/concepts/utils/asserts.js +9208 -0
- package/out/concepts/utils/asserts.js.map +1 -0
- package/out/concepts/utils/quick-info.d.ts +13 -0
- package/out/concepts/utils/quick-info.js +51 -0
- package/out/concepts/utils/quick-info.js.map +1 -0
- package/out/concepts/utils/types.d.ts +447 -0
- package/out/concepts/utils/types.js +3 -0
- package/out/concepts/utils/types.js.map +1 -0
- package/out/server/getConnector.js +27 -4
- package/out/server/getConnector.js.map +1 -1
- package/out/utils/i18nInfo.d.ts +5 -0
- package/out/utils/i18nInfo.js +36 -0
- package/out/utils/i18nInfo.js.map +1 -0
- package/out/utils/time-slicing/constant.d.ts +35 -0
- package/out/utils/time-slicing/constant.js +40 -0
- package/out/utils/time-slicing/constant.js.map +1 -0
- package/out/utils/time-slicing/controller.d.ts +53 -0
- package/out/utils/time-slicing/controller.js +294 -0
- package/out/utils/time-slicing/controller.js.map +1 -0
- package/out/utils/time-slicing/index.d.ts +5 -0
- package/out/utils/time-slicing/index.js +26 -0
- package/out/utils/time-slicing/index.js.map +1 -0
- package/out/utils/time-slicing/page-state.d.ts +2 -0
- package/out/utils/time-slicing/page-state.js +14 -0
- package/out/utils/time-slicing/page-state.js.map +1 -0
- package/out/utils/time-slicing/performance.d.ts +11 -0
- package/out/utils/time-slicing/performance.js +50 -0
- package/out/utils/time-slicing/performance.js.map +1 -0
- package/out/utils/time-slicing/runner.d.ts +12 -0
- package/out/utils/time-slicing/runner.js +52 -0
- package/out/utils/time-slicing/runner.js.map +1 -0
- package/out/utils/time-slicing/tool.d.ts +24 -0
- package/out/utils/time-slicing/tool.js +47 -0
- package/out/utils/time-slicing/tool.js.map +1 -0
- package/out/utils/time-slicing/utils.d.ts +62 -0
- package/out/utils/time-slicing/utils.js +47 -0
- package/out/utils/time-slicing/utils.js.map +1 -0
- package/out/utils/time-slicing/wrapper.d.ts +18 -0
- package/out/utils/time-slicing/wrapper.js +55 -0
- package/out/utils/time-slicing/wrapper.js.map +1 -0
- package/package.json +3 -3
- package/src/common/BaseNode.ts +1 -1
- package/ts-worker/package.json +1 -1
- package/coverage/base.css +0 -224
- package/coverage/block-navigation.js +0 -87
- package/coverage/favicon.png +0 -0
- package/coverage/index.html +0 -461
- package/coverage/prettify.css +0 -1
- package/coverage/prettify.js +0 -2
- package/coverage/sort-arrow-sprite.png +0 -0
- package/coverage/sorter.js +0 -196
- package/coverage/src/automate/engine/index.html +0 -116
- package/coverage/src/automate/engine/utils.js.html +0 -1414
- package/coverage/src/bak/index.html +0 -116
- package/coverage/src/bak/translator.js.html +0 -745
- package/coverage/src/breakpoint/generator/AfterStartNode.ts.html +0 -175
- package/coverage/src/breakpoint/generator/BeforeEndNode.ts.html +0 -169
- package/coverage/src/breakpoint/generator/BreakpointNode.ts.html +0 -1246
- package/coverage/src/breakpoint/generator/CallbackNode.ts.html +0 -145
- package/coverage/src/breakpoint/generator/index.html +0 -176
- package/coverage/src/breakpoint/generator/index.ts.html +0 -508
- package/coverage/src/breakpoint/index.html +0 -116
- package/coverage/src/breakpoint/index.ts.html +0 -94
- package/coverage/src/breakpoint/shared/constants.ts.html +0 -436
- package/coverage/src/breakpoint/shared/index.html +0 -176
- package/coverage/src/breakpoint/shared/index.ts.html +0 -94
- package/coverage/src/breakpoint/shared/operations.ts.html +0 -160
- package/coverage/src/breakpoint/shared/socket.ts.html +0 -1297
- package/coverage/src/breakpoint/shared/utils.ts.html +0 -1087
- package/coverage/src/breakpoint/store/core.ts.html +0 -1600
- package/coverage/src/breakpoint/store/dock.ts.html +0 -733
- package/coverage/src/breakpoint/store/index.html +0 -146
- package/coverage/src/breakpoint/store/index.ts.html +0 -91
- package/coverage/src/common/BaseNode.ts.html +0 -3904
- package/coverage/src/common/Command.ts.html +0 -310
- package/coverage/src/common/EventEmitter.ts.html +0 -370
- package/coverage/src/common/Messager.ts.html +0 -820
- package/coverage/src/common/asyncFuncMap.ts.html +0 -127
- package/coverage/src/common/index.html +0 -191
- package/coverage/src/common/index.ts.html +0 -94
- package/coverage/src/concepts/Abort__.ts.html +0 -331
- package/coverage/src/concepts/Anchor__.ts.html +0 -661
- package/coverage/src/concepts/AnonymousFunction__.ts.html +0 -2071
- package/coverage/src/concepts/App__.ts.html +0 -14095
- package/coverage/src/concepts/Argument__.ts.html +0 -979
- package/coverage/src/concepts/Assignee__.ts.html +0 -2263
- package/coverage/src/concepts/AssignmentLine__.ts.html +0 -412
- package/coverage/src/concepts/Assignment__.ts.html +0 -1162
- package/coverage/src/concepts/Attribute__.ts.html +0 -748
- package/coverage/src/concepts/AuthInterface__.ts.html +0 -370
- package/coverage/src/concepts/AuthLogicForCallInterface__.ts.html +0 -1999
- package/coverage/src/concepts/AuthLogic__.ts.html +0 -793
- package/coverage/src/concepts/BackendVariable__.ts.html +0 -1498
- package/coverage/src/concepts/Backend__.ts.html +0 -1180
- package/coverage/src/concepts/BatchAssignment__.ts.html +0 -3346
- package/coverage/src/concepts/BinaryExpression__.ts.html +0 -1543
- package/coverage/src/concepts/BindAttribute__.ts.html +0 -3928
- package/coverage/src/concepts/BindDirective__.ts.html +0 -1984
- package/coverage/src/concepts/BindEvent__.ts.html +0 -3463
- package/coverage/src/concepts/BindStyle__.ts.html +0 -1627
- package/coverage/src/concepts/BooleanLiteral__.ts.html +0 -421
- package/coverage/src/concepts/CallAuthInterface__.ts.html +0 -1630
- package/coverage/src/concepts/CallConnector__.ts.html +0 -925
- package/coverage/src/concepts/CallFunction__.ts.html +0 -2140
- package/coverage/src/concepts/CallInterface__.ts.html +0 -2764
- package/coverage/src/concepts/CallLogic__.ts.html +0 -4738
- package/coverage/src/concepts/CallQueryComponent__.ts.html +0 -5335
- package/coverage/src/concepts/Comment__.ts.html +0 -397
- package/coverage/src/concepts/CompletionProperty__.ts.html +0 -940
- package/coverage/src/concepts/ConfigGroup__.ts.html +0 -1120
- package/coverage/src/concepts/ConfigPropertyValue__.ts.html +0 -427
- package/coverage/src/concepts/ConfigProperty__.ts.html +0 -1363
- package/coverage/src/concepts/Configuration__.ts.html +0 -1042
- package/coverage/src/concepts/Connection__.ts.html +0 -1375
- package/coverage/src/concepts/ConnectorTrigger__.ts.html +0 -598
- package/coverage/src/concepts/Connector__.ts.html +0 -4318
- package/coverage/src/concepts/Constant__.ts.html +0 -928
- package/coverage/src/concepts/DataSource__.ts.html +0 -1786
- package/coverage/src/concepts/DatabaseTypeAnnotation__.ts.html +0 -334
- package/coverage/src/concepts/Destination__.ts.html +0 -2743
- package/coverage/src/concepts/End__.ts.html +0 -436
- package/coverage/src/concepts/EntityIndex__.ts.html +0 -790
- package/coverage/src/concepts/EntityProperty__.ts.html +0 -2716
- package/coverage/src/concepts/Entity__.ts.html +0 -2977
- package/coverage/src/concepts/EnumItem__.ts.html +0 -553
- package/coverage/src/concepts/Enum__.ts.html +0 -1246
- package/coverage/src/concepts/Event__.ts.html +0 -1099
- package/coverage/src/concepts/ExternalDestination__.ts.html +0 -1048
- package/coverage/src/concepts/ForEachStatement__.ts.html +0 -1978
- package/coverage/src/concepts/FrontendLibrary__.ts.html +0 -1738
- package/coverage/src/concepts/FrontendVariable__.ts.html +0 -292
- package/coverage/src/concepts/Frontend__.ts.html +0 -4024
- package/coverage/src/concepts/Function__.ts.html +0 -3664
- package/coverage/src/concepts/Identifier__.ts.html +0 -1060
- package/coverage/src/concepts/IfStatement__.ts.html +0 -1621
- package/coverage/src/concepts/Integration__.ts.html +0 -1255
- package/coverage/src/concepts/InterfaceParam__.ts.html +0 -1102
- package/coverage/src/concepts/Interface__.ts.html +0 -3433
- package/coverage/src/concepts/JSBlock__.ts.html +0 -601
- package/coverage/src/concepts/JavaLogic__.ts.html +0 -463
- package/coverage/src/concepts/LogicItem__.ts.html +0 -1174
- package/coverage/src/concepts/Logic__.ts.html +0 -7444
- package/coverage/src/concepts/MatchCase__.ts.html +0 -2968
- package/coverage/src/concepts/Match__.ts.html +0 -2476
- package/coverage/src/concepts/MemberExpression__.ts.html +0 -1732
- package/coverage/src/concepts/MetadataType__.ts.html +0 -1996
- package/coverage/src/concepts/MicroApp__.ts.html +0 -439
- package/coverage/src/concepts/Module__.ts.html +0 -9874
- package/coverage/src/concepts/MsgTriggerEvent__.ts.html +0 -1060
- package/coverage/src/concepts/MsgTriggerLauncher__.ts.html +0 -1033
- package/coverage/src/concepts/Namespace__.ts.html +0 -8077
- package/coverage/src/concepts/NewComposite__.ts.html +0 -4795
- package/coverage/src/concepts/NewList__.ts.html +0 -1648
- package/coverage/src/concepts/NewMap__.ts.html +0 -2356
- package/coverage/src/concepts/New__.ts.html +0 -289
- package/coverage/src/concepts/NullLiteral__.ts.html +0 -352
- package/coverage/src/concepts/NumericLiteral__.ts.html +0 -691
- package/coverage/src/concepts/OqlQueryComponent__.ts.html +0 -1231
- package/coverage/src/concepts/OverriddenLogic__.ts.html +0 -6892
- package/coverage/src/concepts/Param__.ts.html +0 -1735
- package/coverage/src/concepts/Point__.ts.html +0 -334
- package/coverage/src/concepts/ProcessComponent__.ts.html +0 -1693
- package/coverage/src/concepts/ProcessElement__.ts.html +0 -5983
- package/coverage/src/concepts/ProcessOutcome__.ts.html +0 -355
- package/coverage/src/concepts/ProcessOutcomes__.ts.html +0 -346
- package/coverage/src/concepts/Process__.ts.html +0 -4831
- package/coverage/src/concepts/QueryAggregateExpression__.ts.html +0 -583
- package/coverage/src/concepts/QueryFieldExpression__.ts.html +0 -586
- package/coverage/src/concepts/QueryFromExpression__.ts.html +0 -925
- package/coverage/src/concepts/QueryGroupByExpression__.ts.html +0 -574
- package/coverage/src/concepts/QueryJoinExpression__.ts.html +0 -1582
- package/coverage/src/concepts/QueryLimitExpression__.ts.html +0 -652
- package/coverage/src/concepts/QueryOrderByExpression__.ts.html +0 -694
- package/coverage/src/concepts/QuerySelectExpression__.ts.html +0 -1729
- package/coverage/src/concepts/Rect__.ts.html +0 -376
- package/coverage/src/concepts/Return__.ts.html +0 -1327
- package/coverage/src/concepts/Role__.ts.html +0 -604
- package/coverage/src/concepts/SelectMembers__.ts.html +0 -1261
- package/coverage/src/concepts/Slot__.ts.html +0 -643
- package/coverage/src/concepts/SqlQueryComponent__.ts.html +0 -997
- package/coverage/src/concepts/Start__.ts.html +0 -307
- package/coverage/src/concepts/StringInterpolation__.ts.html +0 -1150
- package/coverage/src/concepts/StringLiteral__.ts.html +0 -508
- package/coverage/src/concepts/StructureProperty__.ts.html +0 -1147
- package/coverage/src/concepts/Structure__.ts.html +0 -2119
- package/coverage/src/concepts/SwitchCase__.ts.html +0 -1189
- package/coverage/src/concepts/SwitchStatement__.ts.html +0 -892
- package/coverage/src/concepts/Theme__.ts.html +0 -361
- package/coverage/src/concepts/Transactional__.ts.html +0 -631
- package/coverage/src/concepts/TriggerEvent__.ts.html +0 -1027
- package/coverage/src/concepts/TriggerLauncher__.ts.html +0 -778
- package/coverage/src/concepts/TypeAnnotation__.ts.html +0 -3880
- package/coverage/src/concepts/TypeParam__.ts.html +0 -322
- package/coverage/src/concepts/UnaryExpression__.ts.html +0 -724
- package/coverage/src/concepts/Unparsed__.ts.html +0 -397
- package/coverage/src/concepts/UseComponent__.ts.html +0 -334
- package/coverage/src/concepts/ValidationRule__.ts.html +0 -1855
- package/coverage/src/concepts/Variable__.ts.html +0 -1534
- package/coverage/src/concepts/ViewBlock__.ts.html +0 -355
- package/coverage/src/concepts/ViewComponent__.ts.html +0 -4255
- package/coverage/src/concepts/ViewElement__.ts.html +0 -8956
- package/coverage/src/concepts/View__.ts.html +0 -8875
- package/coverage/src/concepts/WhileStatement__.ts.html +0 -1096
- package/coverage/src/concepts/basics/stdlib/index.html +0 -356
- package/coverage/src/concepts/basics/stdlib/index.ts.html +0 -208
- package/coverage/src/concepts/basics/stdlib/nasl.auth.ts.html +0 -565
- package/coverage/src/concepts/basics/stdlib/nasl.browser.ts.html +0 -517
- package/coverage/src/concepts/basics/stdlib/nasl.collection.ts.html +0 -226
- package/coverage/src/concepts/basics/stdlib/nasl.configuration.ts.html +0 -172
- package/coverage/src/concepts/basics/stdlib/nasl.core.ts.html +0 -214
- package/coverage/src/concepts/basics/stdlib/nasl.event.ts.html +0 -145
- package/coverage/src/concepts/basics/stdlib/nasl.http.ts.html +0 -589
- package/coverage/src/concepts/basics/stdlib/nasl.interface.ts.html +0 -214
- package/coverage/src/concepts/basics/stdlib/nasl.io.ts.html +0 -229
- package/coverage/src/concepts/basics/stdlib/nasl.logging.ts.html +0 -268
- package/coverage/src/concepts/basics/stdlib/nasl.process.ts.html +0 -1999
- package/coverage/src/concepts/basics/stdlib/nasl.ui.ts.html +0 -3259
- package/coverage/src/concepts/basics/stdlib/nasl.util.ts.html +0 -6844
- package/coverage/src/concepts/basics/stdlib/nasl.validation.ts.html +0 -1768
- package/coverage/src/concepts/basics/stdlib/reference2TypeAnnotationList.ts.html +0 -163
- package/coverage/src/concepts/basics/stdlib/timeZone.ts.html +0 -664
- package/coverage/src/concepts/basics/types/coreTypeList.ts.html +0 -121
- package/coverage/src/concepts/basics/types/index.html +0 -131
- package/coverage/src/concepts/basics/types/index.ts.html +0 -160
- package/coverage/src/concepts/index.html +0 -1976
- package/coverage/src/concepts/index.ts.html +0 -103
- package/coverage/src/concepts/index__.ts.html +0 -454
- package/coverage/src/config.ts.html +0 -325
- package/coverage/src/decorators/index.html +0 -131
- package/coverage/src/decorators/index.ts.html +0 -574
- package/coverage/src/decorators/promise.ts.html +0 -169
- package/coverage/src/eventBus.ts.html +0 -100
- package/coverage/src/generator/compileComponent.ts.html +0 -142
- package/coverage/src/generator/genBundleFiles.ts.html +0 -1822
- package/coverage/src/generator/genHash.ts.html +0 -124
- package/coverage/src/generator/genMetaData.ts.html +0 -1129
- package/coverage/src/generator/genReleaseBody.ts.html +0 -1282
- package/coverage/src/generator/icestark.ts.html +0 -220
- package/coverage/src/generator/index.html +0 -266
- package/coverage/src/generator/index.ts.html +0 -106
- package/coverage/src/generator/microApp.ts.html +0 -172
- package/coverage/src/generator/permission.ts.html +0 -1036
- package/coverage/src/generator/qiankun.ts.html +0 -232
- package/coverage/src/generator/styleReplacer.ts.html +0 -199
- package/coverage/src/index.html +0 -146
- package/coverage/src/index.ts.html +0 -121
- package/coverage/src/manager/diagnostic.ts.html +0 -442
- package/coverage/src/manager/index.html +0 -131
- package/coverage/src/manager/stepRecorder.ts.html +0 -457
- package/coverage/src/natural/genNaturalTS.ts.html +0 -355
- package/coverage/src/natural/index.html +0 -161
- package/coverage/src/natural/index.ts.html +0 -91
- package/coverage/src/natural/naslStdlibMap.ts.html +0 -157
- package/coverage/src/natural/transformTSCode.ts.html +0 -2707
- package/coverage/src/sentry/index.html +0 -116
- package/coverage/src/sentry/index.ts.html +0 -676
- package/coverage/src/server/createUiTs.ts.html +0 -919
- package/coverage/src/server/entity2LogicNamespace.ts.html +0 -1294
- package/coverage/src/server/event.js.html +0 -526
- package/coverage/src/server/extendBaseNode.ts.html +0 -1765
- package/coverage/src/server/formatTsUtils.ts.html +0 -2689
- package/coverage/src/server/getConnector.ts.html +0 -316
- package/coverage/src/server/getExtensionModules.ts.html +0 -178
- package/coverage/src/server/getFunctions.ts.html +0 -133
- package/coverage/src/server/getInterfaces.ts.html +0 -229
- package/coverage/src/server/getLogging.ts.html +0 -100
- package/coverage/src/server/getLogics.ts.html +0 -1363
- package/coverage/src/server/getMemberIdentifier.ts.html +0 -1609
- package/coverage/src/server/getProcessComponents.ts.html +0 -112
- package/coverage/src/server/getProcesses.ts.html +0 -2023
- package/coverage/src/server/getValidates.ts.html +0 -115
- package/coverage/src/server/index.html +0 -401
- package/coverage/src/server/index.ts.html +0 -229
- package/coverage/src/server/naslServer.ts.html +0 -14812
- package/coverage/src/server/naslStdlibMap.ts.html +0 -241
- package/coverage/src/server/process2LogicNamespace.ts.html +0 -454
- package/coverage/src/server/translator.ts.html +0 -2566
- package/coverage/src/service/creator/add.configs.js.html +0 -397
- package/coverage/src/service/creator/errHandles.js.html +0 -304
- package/coverage/src/service/creator/index.html +0 -146
- package/coverage/src/service/creator/index.js.html +0 -352
- package/coverage/src/service/datasource/api.js.html +0 -118
- package/coverage/src/service/datasource/index.html +0 -131
- package/coverage/src/service/datasource/index.js.html +0 -103
- package/coverage/src/service/logic/api.js.html +0 -109
- package/coverage/src/service/logic/index.html +0 -131
- package/coverage/src/service/logic/index.js.html +0 -103
- package/coverage/src/service/storage/api.js.html +0 -202
- package/coverage/src/service/storage/index.html +0 -206
- package/coverage/src/service/storage/index.ts.html +0 -103
- package/coverage/src/service/storage/init.ts.html +0 -3661
- package/coverage/src/service/storage/jsoner.ts.html +0 -502
- package/coverage/src/service/storage/map.ts.html +0 -256
- package/coverage/src/service/storage/service.ts.html +0 -331
- package/coverage/src/service/storage/storagePoint.ts.html +0 -304
- package/coverage/src/templator/genCallComponentLogic.ts.html +0 -163
- package/coverage/src/templator/genCreateBlock.ts.html +0 -1084
- package/coverage/src/templator/genCurdEditMultipleKeyBlock.ts.html +0 -1627
- package/coverage/src/templator/genCurdMultipleKeyBlock.ts.html +0 -2242
- package/coverage/src/templator/genEditTableBlock.ts.html +0 -1024
- package/coverage/src/templator/genEnumSelectBlock.ts.html +0 -178
- package/coverage/src/templator/genGetBlock.ts.html +0 -451
- package/coverage/src/templator/genGridViewBlock.ts.html +0 -1114
- package/coverage/src/templator/genListViewBlock.ts.html +0 -475
- package/coverage/src/templator/genQueryComponent.ts.html +0 -1207
- package/coverage/src/templator/genSelectBlock.ts.html +0 -1243
- package/coverage/src/templator/genTableBlock.ts.html +0 -973
- package/coverage/src/templator/genUpdateBlock.ts.html +0 -1204
- package/coverage/src/templator/index.html +0 -326
- package/coverage/src/templator/index.ts.html +0 -154
- package/coverage/src/templator/utils.ts.html +0 -1927
- package/coverage/src/translator/constant.ts.html +0 -106
- package/coverage/src/translator/index.html +0 -146
- package/coverage/src/translator/index.ts.html +0 -94
- package/coverage/src/translator/utils.ts.html +0 -493
- package/coverage/src/utils/cookie.ts.html +0 -265
- package/coverage/src/utils/env.ts.html +0 -91
- package/coverage/src/utils/index.html +0 -236
- package/coverage/src/utils/index.ts.html +0 -748
- package/coverage/src/utils/logger.ts.html +0 -145
- package/coverage/src/utils/sortTsString.ts.html +0 -187
- package/coverage/src/utils/string.ts.html +0 -502
- package/coverage/src/utils/time-slicing.ts.html +0 -418
- package/coverage/src/utils/traverse.ts.html +0 -568
- package/coverage/src/utils/window.ts.html +0 -112
- package/out/utils/time-slicing.d.ts +0 -41
- package/out/utils/time-slicing.js +0 -82
- package/out/utils/time-slicing.js.map +0 -1
|
@@ -3,167 +3,172 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
3
3
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
4
|
};
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
-
exports.httpTypeList = exports.httpStructures = void 0;
|
|
6
|
+
exports.initialize = exports.httpTypeList = exports.httpStructures = void 0;
|
|
7
7
|
const Namespace__1 = __importDefault(require("../../Namespace__"));
|
|
8
|
-
const TypeAnnotation__1 = __importDefault(require("../../TypeAnnotation__"));
|
|
9
|
-
const Structure__1 = __importDefault(require("../../Structure__"));
|
|
10
|
-
const StructureProperty__1 = __importDefault(require("../../StructureProperty__"));
|
|
11
8
|
const reference2TypeAnnotationList_1 = require("./reference2TypeAnnotationList");
|
|
12
|
-
const
|
|
13
|
-
exports.httpStructures = [
|
|
14
|
-
|
|
9
|
+
const decorators_1 = require("../../../decorators");
|
|
10
|
+
exports.httpStructures = [];
|
|
11
|
+
exports.httpTypeList = [];
|
|
12
|
+
const httpNamespace = new Namespace__1.default({
|
|
13
|
+
name: 'http',
|
|
14
|
+
structures: exports.httpStructures,
|
|
15
|
+
logics: [],
|
|
16
|
+
});
|
|
17
|
+
exports.default = httpNamespace;
|
|
18
|
+
/** @internal */
|
|
19
|
+
function initialize() {
|
|
20
|
+
const Logic = (0, decorators_1.getConceptConstructor)('Logic');
|
|
21
|
+
const Structure = (0, decorators_1.getConceptConstructor)('Structure');
|
|
22
|
+
const StructureProperty = (0, decorators_1.getConceptConstructor)('StructureProperty');
|
|
23
|
+
const TypeAnnotation = (0, decorators_1.getConceptConstructor)('TypeAnnotation');
|
|
24
|
+
const TypeParam = (0, decorators_1.getConceptConstructor)('TypeParam');
|
|
25
|
+
exports.httpStructures.push(new Structure({
|
|
15
26
|
name: 'HttpCookie',
|
|
16
27
|
properties: [
|
|
17
|
-
new
|
|
28
|
+
new StructureProperty({
|
|
18
29
|
name: 'name',
|
|
19
|
-
typeAnnotation:
|
|
30
|
+
typeAnnotation: TypeAnnotation.createPrimitive('String'),
|
|
20
31
|
}),
|
|
21
|
-
new
|
|
32
|
+
new StructureProperty({
|
|
22
33
|
name: 'value',
|
|
23
|
-
typeAnnotation:
|
|
34
|
+
typeAnnotation: TypeAnnotation.createPrimitive('String'),
|
|
24
35
|
}),
|
|
25
|
-
new
|
|
36
|
+
new StructureProperty({
|
|
26
37
|
name: 'domain',
|
|
27
|
-
typeAnnotation:
|
|
38
|
+
typeAnnotation: TypeAnnotation.createPrimitive('String'),
|
|
28
39
|
}),
|
|
29
|
-
new
|
|
40
|
+
new StructureProperty({
|
|
30
41
|
name: 'cookiePath',
|
|
31
|
-
typeAnnotation:
|
|
42
|
+
typeAnnotation: TypeAnnotation.createPrimitive('String'),
|
|
32
43
|
}),
|
|
33
|
-
new
|
|
44
|
+
new StructureProperty({
|
|
34
45
|
name: 'sameSite',
|
|
35
|
-
typeAnnotation:
|
|
46
|
+
typeAnnotation: TypeAnnotation.createPrimitive('String'),
|
|
36
47
|
}),
|
|
37
|
-
new
|
|
48
|
+
new StructureProperty({
|
|
38
49
|
name: 'httpOnly',
|
|
39
|
-
typeAnnotation:
|
|
50
|
+
typeAnnotation: TypeAnnotation.createPrimitive('Boolean'),
|
|
40
51
|
}),
|
|
41
|
-
new
|
|
52
|
+
new StructureProperty({
|
|
42
53
|
name: 'secure',
|
|
43
|
-
typeAnnotation:
|
|
54
|
+
typeAnnotation: TypeAnnotation.createPrimitive('Boolean'),
|
|
44
55
|
}),
|
|
45
|
-
new
|
|
56
|
+
new StructureProperty({
|
|
46
57
|
name: 'maxAge',
|
|
47
|
-
typeAnnotation:
|
|
58
|
+
typeAnnotation: TypeAnnotation.createPrimitive('Integer'),
|
|
48
59
|
}),
|
|
49
60
|
],
|
|
50
|
-
}),
|
|
51
|
-
new Structure__1.default({
|
|
61
|
+
}), new Structure({
|
|
52
62
|
name: 'HttpResponse',
|
|
53
63
|
typeParams: [
|
|
54
|
-
new
|
|
64
|
+
new TypeParam({
|
|
55
65
|
name: 'T',
|
|
56
66
|
}),
|
|
57
67
|
],
|
|
58
68
|
properties: [
|
|
59
|
-
new
|
|
69
|
+
new StructureProperty({
|
|
60
70
|
name: 'status',
|
|
61
|
-
typeAnnotation:
|
|
71
|
+
typeAnnotation: TypeAnnotation.createPrimitive('Integer'),
|
|
62
72
|
}),
|
|
63
|
-
new
|
|
73
|
+
new StructureProperty({
|
|
64
74
|
name: 'body',
|
|
65
|
-
typeAnnotation:
|
|
75
|
+
typeAnnotation: TypeAnnotation.createTypeParam('T'),
|
|
66
76
|
}),
|
|
67
|
-
new
|
|
77
|
+
new StructureProperty({
|
|
68
78
|
name: 'headers',
|
|
69
|
-
typeAnnotation:
|
|
79
|
+
typeAnnotation: TypeAnnotation.createGeneric('Map', {
|
|
70
80
|
typeArguments: [
|
|
71
|
-
|
|
72
|
-
|
|
81
|
+
TypeAnnotation.createPrimitive('String'),
|
|
82
|
+
TypeAnnotation.createPrimitive('String'),
|
|
73
83
|
// TypeAnnotation.createTypeParam('K'),
|
|
74
84
|
// TypeAnnotation.createTypeParam('V'),
|
|
75
85
|
],
|
|
76
86
|
}),
|
|
77
|
-
}), new
|
|
87
|
+
}), new StructureProperty({
|
|
78
88
|
name: 'cookies',
|
|
79
|
-
typeAnnotation:
|
|
89
|
+
typeAnnotation: TypeAnnotation.createGeneric('Map', {
|
|
80
90
|
typeArguments: [
|
|
81
|
-
|
|
91
|
+
TypeAnnotation.createPrimitive('String'),
|
|
82
92
|
// TypeAnnotation.createTypeParam('K'),
|
|
83
|
-
|
|
93
|
+
TypeAnnotation.createReference('HttpCookie', {
|
|
84
94
|
typeNamespace: 'nasl.http',
|
|
85
95
|
}),
|
|
86
96
|
],
|
|
87
97
|
}),
|
|
88
98
|
}),
|
|
89
99
|
],
|
|
90
|
-
}),
|
|
91
|
-
new Structure__1.default({
|
|
100
|
+
}), new Structure({
|
|
92
101
|
name: 'HttpRequest',
|
|
93
102
|
typeParams: [
|
|
94
|
-
new
|
|
103
|
+
new TypeParam({
|
|
95
104
|
name: 'T',
|
|
96
105
|
}),
|
|
97
106
|
],
|
|
98
107
|
properties: [
|
|
99
|
-
new
|
|
108
|
+
new StructureProperty({
|
|
100
109
|
name: 'requestURL',
|
|
101
|
-
typeAnnotation:
|
|
110
|
+
typeAnnotation: TypeAnnotation.createPrimitive('String'),
|
|
102
111
|
}),
|
|
103
|
-
new
|
|
112
|
+
new StructureProperty({
|
|
104
113
|
name: 'remoteIp',
|
|
105
|
-
typeAnnotation:
|
|
114
|
+
typeAnnotation: TypeAnnotation.createPrimitive('String'),
|
|
106
115
|
}),
|
|
107
|
-
new
|
|
116
|
+
new StructureProperty({
|
|
108
117
|
name: 'requestMethod',
|
|
109
|
-
typeAnnotation:
|
|
118
|
+
typeAnnotation: TypeAnnotation.createPrimitive('String'),
|
|
110
119
|
}),
|
|
111
|
-
new
|
|
120
|
+
new StructureProperty({
|
|
112
121
|
name: 'body',
|
|
113
|
-
typeAnnotation:
|
|
122
|
+
typeAnnotation: TypeAnnotation.createTypeParam('T'),
|
|
114
123
|
}),
|
|
115
|
-
new
|
|
124
|
+
new StructureProperty({
|
|
116
125
|
name: 'headers',
|
|
117
|
-
typeAnnotation:
|
|
126
|
+
typeAnnotation: TypeAnnotation.createGeneric('Map', {
|
|
118
127
|
typeArguments: [
|
|
119
|
-
|
|
120
|
-
|
|
128
|
+
TypeAnnotation.createPrimitive('String'),
|
|
129
|
+
TypeAnnotation.createPrimitive('String'),
|
|
121
130
|
// TypeAnnotation.createTypeParam('K'),
|
|
122
131
|
// TypeAnnotation.createTypeParam('V'),
|
|
123
132
|
],
|
|
124
133
|
}),
|
|
125
134
|
}),
|
|
126
|
-
new
|
|
135
|
+
new StructureProperty({
|
|
127
136
|
name: 'pathParams',
|
|
128
|
-
typeAnnotation:
|
|
137
|
+
typeAnnotation: TypeAnnotation.createGeneric('Map', {
|
|
129
138
|
typeArguments: [
|
|
130
|
-
|
|
131
|
-
|
|
139
|
+
TypeAnnotation.createPrimitive('String'),
|
|
140
|
+
TypeAnnotation.createPrimitive('String'),
|
|
132
141
|
// TypeAnnotation.createTypeParam('K'),
|
|
133
142
|
// TypeAnnotation.createTypeParam('V'),
|
|
134
143
|
],
|
|
135
144
|
}),
|
|
136
145
|
}),
|
|
137
|
-
new
|
|
146
|
+
new StructureProperty({
|
|
138
147
|
name: 'queryParams',
|
|
139
|
-
typeAnnotation:
|
|
148
|
+
typeAnnotation: TypeAnnotation.createGeneric('Map', {
|
|
140
149
|
typeArguments: [
|
|
141
|
-
|
|
142
|
-
|
|
150
|
+
TypeAnnotation.createPrimitive('String'),
|
|
151
|
+
TypeAnnotation.createPrimitive('String'),
|
|
143
152
|
// TypeAnnotation.createTypeParam('K'),
|
|
144
153
|
// TypeAnnotation.createTypeParam('V'),
|
|
145
154
|
],
|
|
146
155
|
}),
|
|
147
156
|
}),
|
|
148
|
-
new
|
|
157
|
+
new StructureProperty({
|
|
149
158
|
name: 'cookies',
|
|
150
|
-
typeAnnotation:
|
|
159
|
+
typeAnnotation: TypeAnnotation.createGeneric('Map', {
|
|
151
160
|
typeArguments: [
|
|
152
|
-
|
|
161
|
+
TypeAnnotation.createPrimitive('String'),
|
|
153
162
|
// TypeAnnotation.createTypeParam('K'),
|
|
154
|
-
|
|
163
|
+
TypeAnnotation.createReference('HttpCookie', {
|
|
155
164
|
typeNamespace: 'nasl.http',
|
|
156
165
|
}),
|
|
157
166
|
],
|
|
158
167
|
}),
|
|
159
168
|
}),
|
|
160
169
|
],
|
|
161
|
-
})
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
exports.
|
|
165
|
-
name: 'http',
|
|
166
|
-
structures: exports.httpStructures,
|
|
167
|
-
logics: [],
|
|
168
|
-
});
|
|
170
|
+
}));
|
|
171
|
+
exports.httpTypeList.push(...(0, reference2TypeAnnotationList_1.reference2TypeAnnotationList)(exports.httpStructures, 'nasl.http'));
|
|
172
|
+
}
|
|
173
|
+
exports.initialize = initialize;
|
|
169
174
|
//# sourceMappingURL=nasl.http.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"nasl.http.js","sourceRoot":"","sources":["../../../../src/concepts/basics/stdlib/nasl.http.ts"],"names":[],"mappings":";;;;;;AAAA,mEAA0C;
|
|
1
|
+
{"version":3,"file":"nasl.http.js","sourceRoot":"","sources":["../../../../src/concepts/basics/stdlib/nasl.http.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,124 +0,0 @@
|
|
|
1
|
-
import type { App } from './App__';
|
|
2
|
-
import type { Module } from './Module__';
|
|
3
|
-
import type { Namespace } from './Namespace__';
|
|
4
|
-
import type { Frontend } from './Frontend__';
|
|
5
|
-
import type { Backend } from './Backend__';
|
|
6
|
-
import type { Integration } from './Integration__';
|
|
7
|
-
import type { MicroApp } from './MicroApp__';
|
|
8
|
-
import type { TypeAnnotation } from './TypeAnnotation__';
|
|
9
|
-
import type { DatabaseTypeAnnotation } from './DatabaseTypeAnnotation__';
|
|
10
|
-
import type { TypeParam } from './TypeParam__';
|
|
11
|
-
import type { Structure } from './Structure__';
|
|
12
|
-
import type { StructureProperty } from './StructureProperty__';
|
|
13
|
-
import type { Enum } from './Enum__';
|
|
14
|
-
import type { EnumItem } from './EnumItem__';
|
|
15
|
-
import type { DataSource } from './DataSource__';
|
|
16
|
-
import type { Entity } from './Entity__';
|
|
17
|
-
import type { EntityProperty } from './EntityProperty__';
|
|
18
|
-
import type { EntityIndex } from './EntityIndex__';
|
|
19
|
-
import type { MetadataType } from './MetadataType__';
|
|
20
|
-
import type { View } from './View__';
|
|
21
|
-
import type { ViewElement } from './ViewElement__';
|
|
22
|
-
import type { BindAttribute } from './BindAttribute__';
|
|
23
|
-
import type { BindDirective } from './BindDirective__';
|
|
24
|
-
import type { BindEvent } from './BindEvent__';
|
|
25
|
-
import type { BindStyle } from './BindStyle__';
|
|
26
|
-
import type { ViewComponent } from './ViewComponent__';
|
|
27
|
-
import type { Attribute } from './Attribute__';
|
|
28
|
-
import type { Event } from './Event__';
|
|
29
|
-
import type { Slot } from './Slot__';
|
|
30
|
-
import type { Theme } from './Theme__';
|
|
31
|
-
import type { Logic } from './Logic__';
|
|
32
|
-
import type { AuthLogic } from './AuthLogic__';
|
|
33
|
-
import type { AuthLogicForCallInterface } from './AuthLogicForCallInterface__';
|
|
34
|
-
import type { OverriddenLogic } from './OverriddenLogic__';
|
|
35
|
-
import type { Param } from './Param__';
|
|
36
|
-
import type { Return } from './Return__';
|
|
37
|
-
import type { Variable } from './Variable__';
|
|
38
|
-
import type { BackendVariable } from './BackendVariable__';
|
|
39
|
-
import type { FrontendVariable } from './FrontendVariable__';
|
|
40
|
-
import type { Constant } from './Constant__';
|
|
41
|
-
import type { Function } from './Function__';
|
|
42
|
-
import type { AnonymousFunction } from './AnonymousFunction__';
|
|
43
|
-
import type { Interface } from './Interface__';
|
|
44
|
-
import type { InterfaceParam } from './InterfaceParam__';
|
|
45
|
-
import type { Transactional } from './Transactional__';
|
|
46
|
-
import type { Abort } from './Abort__';
|
|
47
|
-
import type { Start } from './Start__';
|
|
48
|
-
import type { End } from './End__';
|
|
49
|
-
import type { IfStatement } from './IfStatement__';
|
|
50
|
-
import type { SwitchStatement } from './SwitchStatement__';
|
|
51
|
-
import type { SwitchCase } from './SwitchCase__';
|
|
52
|
-
import type { ForEachStatement } from './ForEachStatement__';
|
|
53
|
-
import type { WhileStatement } from './WhileStatement__';
|
|
54
|
-
import type { Assignment } from './Assignment__';
|
|
55
|
-
import type { BatchAssignment } from './BatchAssignment__';
|
|
56
|
-
import type { Comment } from './Comment__';
|
|
57
|
-
import type { CallLogic } from './CallLogic__';
|
|
58
|
-
import type { CallFunction } from './CallFunction__';
|
|
59
|
-
import type { CallInterface } from './CallInterface__';
|
|
60
|
-
import type { Destination } from './Destination__';
|
|
61
|
-
import type { ExternalDestination } from './ExternalDestination__';
|
|
62
|
-
import type { ValidationRule } from './ValidationRule__';
|
|
63
|
-
import type { Argument } from './Argument__';
|
|
64
|
-
import type { Anchor } from './Anchor__';
|
|
65
|
-
import type { JSBlock } from './JSBlock__';
|
|
66
|
-
import type { JavaLogic } from './JavaLogic__';
|
|
67
|
-
import type { Identifier } from './Identifier__';
|
|
68
|
-
import type { NullLiteral } from './NullLiteral__';
|
|
69
|
-
import type { BooleanLiteral } from './BooleanLiteral__';
|
|
70
|
-
import type { StringLiteral } from './StringLiteral__';
|
|
71
|
-
import type { StringInterpolation } from './StringInterpolation__';
|
|
72
|
-
import type { NumericLiteral } from './NumericLiteral__';
|
|
73
|
-
import type { BinaryExpression } from './BinaryExpression__';
|
|
74
|
-
import type { MatchCase } from './MatchCase__';
|
|
75
|
-
import type { Match } from './Match__';
|
|
76
|
-
import type { UnaryExpression } from './UnaryExpression__';
|
|
77
|
-
import type { MemberExpression } from './MemberExpression__';
|
|
78
|
-
import type { Unparsed } from './Unparsed__';
|
|
79
|
-
import type { New } from './New__';
|
|
80
|
-
import type { NewComposite } from './NewComposite__';
|
|
81
|
-
import type { NewList } from './NewList__';
|
|
82
|
-
import type { NewMap } from './NewMap__';
|
|
83
|
-
import type { CallQueryComponent } from './CallQueryComponent__';
|
|
84
|
-
import type { QueryFromExpression } from './QueryFromExpression__';
|
|
85
|
-
import type { QueryJoinExpression } from './QueryJoinExpression__';
|
|
86
|
-
import type { QueryFieldExpression } from './QueryFieldExpression__';
|
|
87
|
-
import type { QueryAggregateExpression } from './QueryAggregateExpression__';
|
|
88
|
-
import type { QueryOrderByExpression } from './QueryOrderByExpression__';
|
|
89
|
-
import type { QueryGroupByExpression } from './QueryGroupByExpression__';
|
|
90
|
-
import type { QuerySelectExpression } from './QuerySelectExpression__';
|
|
91
|
-
import type { QueryLimitExpression } from './QueryLimitExpression__';
|
|
92
|
-
import type { SqlQueryComponent } from './SqlQueryComponent__';
|
|
93
|
-
import type { OqlQueryComponent } from './OqlQueryComponent__';
|
|
94
|
-
import type { Process } from './Process__';
|
|
95
|
-
import type { ProcessElement } from './ProcessElement__';
|
|
96
|
-
import type { ProcessComponent } from './ProcessComponent__';
|
|
97
|
-
import type { ProcessOutcome } from './ProcessOutcome__';
|
|
98
|
-
import type { Assignee } from './Assignee__';
|
|
99
|
-
import type { ProcessOutcomes } from './ProcessOutcomes__';
|
|
100
|
-
import type { Role } from './Role__';
|
|
101
|
-
import type { Configuration } from './Configuration__';
|
|
102
|
-
import type { ConfigGroup } from './ConfigGroup__';
|
|
103
|
-
import type { ConfigProperty } from './ConfigProperty__';
|
|
104
|
-
import type { ConfigPropertyValue } from './ConfigPropertyValue__';
|
|
105
|
-
import type { CompletionProperty } from './CompletionProperty__';
|
|
106
|
-
import type { UseComponent } from './UseComponent__';
|
|
107
|
-
import type { Point } from './Point__';
|
|
108
|
-
import type { Rect } from './Rect__';
|
|
109
|
-
import type { SelectMembers } from './SelectMembers__';
|
|
110
|
-
import type { AssignmentLine } from './AssignmentLine__';
|
|
111
|
-
import type { FrontendLibrary } from './FrontendLibrary__';
|
|
112
|
-
import type { ViewBlock } from './ViewBlock__';
|
|
113
|
-
import type { AuthInterface } from './AuthInterface__';
|
|
114
|
-
import type { CallAuthInterface } from './CallAuthInterface__';
|
|
115
|
-
import type { TriggerEvent } from './TriggerEvent__';
|
|
116
|
-
import type { MsgTriggerEvent } from './MsgTriggerEvent__';
|
|
117
|
-
import type { ConnectorTrigger } from './ConnectorTrigger__';
|
|
118
|
-
import type { TriggerLauncher } from './TriggerLauncher__';
|
|
119
|
-
import type { MsgTriggerLauncher } from './MsgTriggerLauncher__';
|
|
120
|
-
import type { Connector } from './Connector__';
|
|
121
|
-
import type { CallConnector } from './CallConnector__';
|
|
122
|
-
import type { Connection } from './Connection__';
|
|
123
|
-
export declare type SyntaxNode = App | Module | Namespace | Frontend | Backend | Integration | MicroApp | TypeAnnotation | DatabaseTypeAnnotation | TypeParam | Structure | StructureProperty | Enum | EnumItem | DataSource | Entity | EntityProperty | EntityIndex | MetadataType | View | ViewElement | BindAttribute | BindDirective | BindEvent | BindStyle | ViewComponent | Attribute | Event | Slot | Theme | Logic | AuthLogic | AuthLogicForCallInterface | OverriddenLogic | Param | Return | Variable | BackendVariable | FrontendVariable | Constant | Function | AnonymousFunction | Interface | InterfaceParam | Transactional | Abort | Start | End | IfStatement | SwitchStatement | SwitchCase | ForEachStatement | WhileStatement | Assignment | BatchAssignment | Comment | CallLogic | CallFunction | CallInterface | Destination | ExternalDestination | ValidationRule | Argument | Anchor | JSBlock | JavaLogic | Identifier | NullLiteral | BooleanLiteral | StringLiteral | StringInterpolation | NumericLiteral | BinaryExpression | MatchCase | Match | UnaryExpression | MemberExpression | Unparsed | New | NewComposite | NewList | NewMap | CallQueryComponent | QueryFromExpression | QueryJoinExpression | QueryFieldExpression | QueryAggregateExpression | QueryOrderByExpression | QueryGroupByExpression | QuerySelectExpression | QueryLimitExpression | SqlQueryComponent | OqlQueryComponent | Process | ProcessElement | ProcessComponent | ProcessOutcome | Assignee | ProcessOutcomes | Role | Configuration | ConfigGroup | ConfigProperty | ConfigPropertyValue | CompletionProperty | UseComponent | Point | Rect | SelectMembers | AssignmentLine | FrontendLibrary | ViewBlock | AuthInterface | CallAuthInterface | TriggerEvent | MsgTriggerEvent | ConnectorTrigger | TriggerLauncher | MsgTriggerLauncher | Connector | CallConnector | Connection;
|
|
124
|
-
export declare type SyntaxNodeConcept = SyntaxNode['concept'];
|
package/out/concepts/types__.js
CHANGED