@supernova-studio/pulsar-core 2.0.14 → 2.0.15
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/build/main/core/src/browser-bundle.d.ts +1 -0
- package/build/main/core/src/engine/ExportEngineLegacy.d.ts +17 -0
- package/build/main/core/src/engine/ExportEngineNew.d.ts +12 -0
- package/build/main/core/src/engine/configuration/ExportConfiguration.d.ts +25 -0
- package/build/main/core/src/engine/generation/ExportDataProducer.d.ts +20 -0
- package/build/main/core/src/engine/generation/queue/ExportDataQueue.d.ts +16 -0
- package/build/main/core/src/engine/generation/queue/ExportDataQueueOperation.d.ts +6 -0
- package/build/main/core/src/engine/generation/requests/ExportDataEmittedResponseProducer.d.ts +7 -0
- package/build/main/core/src/engine/generation/requests/ExportDataPrimaryResponseProducer.d.ts +7 -0
- package/build/main/core/src/engine/generation/requests/ExportDataRequest.d.ts +21 -0
- package/build/main/core/src/engine/generation/requests/ExportDataRequestDataStore.d.ts +16 -0
- package/build/main/core/src/engine/generation/requests/ExportDataRequestNameStore.d.ts +22 -0
- package/build/main/core/src/engine/generation/requests/ExportDataRequestProducer.d.ts +23 -0
- package/build/main/core/src/engine/generation/requests/ExportDataResponse.d.ts +15 -0
- package/build/main/core/src/engine/generation/requests/specific/dsm/ExportDataRequestAsset.d.ts +15 -0
- package/build/main/core/src/engine/generation/requests/specific/dsm/ExportDataRequestBlueprint.d.ts +18 -0
- package/build/main/core/src/engine/generation/requests/specific/dsm/ExportDataRequestBundledResource.d.ts +11 -0
- package/build/main/core/src/engine/generation/requests/specific/dsm/ExportDataRequestDSMComponent.d.ts +13 -0
- package/build/main/core/src/engine/generation/requests/specific/dsm/ExportDataRequestDSMComponentGroup.d.ts +13 -0
- package/build/main/core/src/engine/generation/requests/specific/dsm/ExportDataRequestDSMDocumentationPage.d.ts +13 -0
- package/build/main/core/src/engine/generation/requests/specific/dsm/ExportDataRequestDSMGeneric.d.ts +11 -0
- package/build/main/core/src/engine/generation/requests/specific/dsm/ExportDataRequestDSMTheme.d.ts +13 -0
- package/build/main/core/src/engine/generation/requests/specific/dsm/ExportDataRequestDSMTokenGroup.d.ts +13 -0
- package/build/main/core/src/engine/generation/requests/specific/dsm/ExportDataRequestDSMTokenType.d.ts +13 -0
- package/build/main/core/src/engine/items/ExportItemProducer.d.ts +14 -0
- package/build/main/core/src/engine/items/construction/ExportItem.d.ts +10 -0
- package/build/main/core/src/engine/items/construction/ExportItemBuilder.d.ts +9 -0
- package/build/main/core/src/engine/items/queue/ExportItemQueue.d.ts +16 -0
- package/build/main/core/src/engine/items/queue/ExportItemQueueOperation.d.ts +6 -0
- package/build/main/core/src/engine/items/requests/ExportItemRequest.d.ts +16 -0
- package/build/main/core/src/engine/items/requests/ExportItemRequestProducer.d.ts +8 -0
- package/build/main/core/src/engine/items/requests/ExportItemResponse.d.ts +11 -0
- package/build/main/core/src/engine/items/requests/ExportItemResponseProducer.d.ts +7 -0
- package/build/main/core/src/engine/jsruntime/JSExportContext.d.ts +10 -0
- package/build/main/core/src/engine/loaders/BlueprintLoader.d.ts +9 -0
- package/build/main/core/src/engine/writing/queue/ExportWriterQueue.d.ts +16 -0
- package/build/main/core/src/engine/writing/queue/ExportWriterQueueOperation.d.ts +6 -0
- package/build/main/core/src/engine/writing/requests/ExportWriterRequest.d.ts +16 -0
- package/build/main/core/src/engine/writing/requests/ExportWriterRequestProducer.d.ts +8 -0
- package/build/main/core/src/engine/writing/requests/ExportWriterResponse.d.ts +11 -0
- package/build/main/core/src/engine/writing/requests/ExportWriterResponseProducer.d.ts +7 -0
- package/build/main/core/src/engine/writing/writers/ExportItemWriter.d.ts +14 -0
- package/build/main/core/src/engine/writing/writers/ExportWriterRuleProcessor.d.ts +11 -0
- package/build/main/core/src/engine/writing/writers/memory/ExportWriterMemory.d.ts +4 -0
- package/build/main/core/src/engine/writing/writers/memory/ExportWriterMemoryRequest.d.ts +11 -0
- package/build/main/core/src/engine/writing/writers/memory/ExportWriterStore.d.ts +16 -0
- package/build/main/core/src/exports.d.ts +8 -0
- package/build/main/core/src/index.d.ts +1 -0
- package/build/main/core/src/model/assets/ExporterBundledResource.d.ts +6 -0
- package/build/main/core/src/model/dsm/DSMReferenceStore.d.ts +32 -0
- package/build/main/core/src/model/exporters/Exporter.d.ts +125 -0
- package/build/main/core/src/model/exporters/ExporterContribution.d.ts +15 -0
- package/build/main/core/src/model/exporters/ExporterContributionBlock.d.ts +27 -0
- package/build/main/core/src/model/exporters/ExporterContributionBlockProperty.d.ts +16 -0
- package/build/main/core/src/model/exporters/ExporterContributionBlockVariant.d.ts +18 -0
- package/build/main/core/src/model/exporters/ExporterContributionConfiguration.d.ts +12 -0
- package/build/main/core/src/model/exporters/ExporterContributionConfigurationItem.d.ts +40 -0
- package/build/main/core/src/model/exporters/configuration/ExporterConfigurationProperty.d.ts +44 -0
- package/build/main/core/src/model/maps/ExporterMapAsset.d.ts +32 -0
- package/build/main/core/src/model/maps/ExporterMapBlueprint.d.ts +20 -0
- package/build/main/core/src/model/maps/ExporterMapBundledResource.d.ts +12 -0
- package/build/main/core/src/model/sources/ExporterSource.d.ts +25 -0
- package/build/main/core/src/pulsar/Pulsar.d.ts +91 -0
- package/build/main/core/src/pulsar/PulsarInterface.d.ts +117 -0
- package/build/main/core/src/pulsar/PulsarStaticAnalysis.d.ts +16 -0
- package/build/main/core/src/pulsar/PulsarStaticAnalysisInterface.d.ts +13 -0
- package/build/main/core/src/pulsar/managers/PulsarBlueprintManager.d.ts +16 -0
- package/build/main/core/src/pulsar/managers/PulsarCIManager.d.ts +31 -0
- package/build/main/core/src/pulsar/managers/PulsarCodeManager.d.ts +25 -0
- package/build/main/core/src/pulsar/managers/PulsarConfigurationManager.d.ts +6 -0
- package/build/main/core/src/pulsar/managers/PulsarExporterManager.d.ts +7 -0
- package/build/main/core/src/pulsar/managers/generators/PulsarExporterPackageAnalyzer.d.ts +10 -0
- package/build/main/core/src/pulsar/managers/generators/PulsarExporterPackageGenerator.d.ts +7 -0
- package/build/main/core/src/pulsar/managers/generators/PulsarFiles.d.ts +21 -0
- package/build/main/core/src/pulsar/managers/loaders/PulsarExporterPackageBrowserLoader.d.ts +12 -0
- package/build/main/core/src/pulsar/managers/loaders/PulsarExporterPackageFileSystemLoader.d.ts +15 -0
- package/build/main/core/src/pulsar/managers/loaders/PulsarExporterPackageGithubLoader.d.ts +32 -0
- package/build/main/core/src/pulsar/managers/loaders/PulsarExporterPackageLoader.d.ts +10 -0
- package/build/main/core/src/pulsar/managers/loaders/PulsarExporterPackageMemoryLoader.d.ts +14 -0
- package/build/main/core/src/pulsar/managers/loaders/PulsarExporterPackageURLLoader.d.ts +12 -0
- package/build/main/core/src/pulsar/managers/loaders/partials/PulsarExporterAssetLoader.d.ts +13 -0
- package/build/main/core/src/pulsar/managers/loaders/partials/PulsarExporterConfigLoader.d.ts +9 -0
- package/build/main/core/src/pulsar/managers/loaders/partials/PulsarExporterJSLoader.d.ts +9 -0
- package/build/main/core/src/pulsar/managers/loaders/partials/PulsarExporterLocalConfigLoader.d.ts +9 -0
- package/build/main/core/src/pulsar/managers/loaders/partials/PulsarExporterMappingLoader.d.ts +21 -0
- package/build/main/core/src/pulsar/managers/loaders/partials/PulsarExporterObjectLoader.d.ts +6 -0
- package/build/main/core/src/pulsar/managers/loaders/partials/PulsarExporterReadmeLoader.d.ts +9 -0
- package/build/main/core/src/pulsar/managers/loaders/partials/PulsarExporterSourceLoader.d.ts +14 -0
- package/build/main/core/src/pulsar/managers/loaders/support/PulsarExporterUnzipper.d.ts +11 -0
- package/build/main/core/src/pulsar/managers/loaders/support/PulsarPathParser.d.ts +4 -0
- package/build/main/core/src/pulsar/managers/loaders/validators/PulsarExporterConfigurationValidator.d.ts +11 -0
- package/build/main/core/src/pulsar/managers/loaders/validators/PulsarExporterMappingValidator.d.ts +8 -0
- package/build/main/core/src/pulsar/managers/loaders/validators/PulsarExporterObjectValidator.d.ts +10 -0
- package/build/main/core/src/pulsar/managers/loaders/validators/PulsarExporterSourceValidator.d.ts +4 -0
- package/build/main/core/src/pulsar/managers/loaders/validators/PulsarJSONValidator.d.ts +3 -0
- package/build/main/core/src/tests/TestConfiguration.d.ts +10 -0
- package/build/main/core/src/tests/casebuilders/ci.d.ts +12 -0
- package/build/main/core/src/tests/casebuilders/configuration.d.ts +5 -0
- package/build/main/core/src/tests/casebuilders/dsm.d.ts +7 -0
- package/build/main/core/src/tests/casebuilders/modelObjects.d.ts +14 -0
- package/build/main/core/src/tests/complex/TestExporter.spec.d.ts +1 -0
- package/build/main/core/src/tests/dynamic_execution/DynamicExecutionSupport.d.ts +4 -0
- package/build/main/core/src/tests/dynamic_execution/TestConfigurableExecution.spec.d.ts +1 -0
- package/build/main/core/src/tests/dynamic_execution/TestJSConstantExecution.spec.d.ts +1 -0
- package/build/main/core/src/tests/dynamic_execution/TestJSFunctionExecution.spec.d.ts +1 -0
- package/build/main/core/src/tests/dynamic_execution/TestJSTransformerExecution.spec.d.ts +1 -0
- package/build/main/core/src/tests/lib.pulsar/TestPulsarBlueprintManipulation.spec.d.ts +1 -0
- package/build/main/core/src/tests/lib.pulsar/TestPulsarCodeManipulation.spec.d.ts +1 -0
- package/build/main/core/src/tests/lib.pulsar/TestPulsarExporterManipulation.spec.d.ts +1 -0
- package/build/main/core/src/tests/packages/TestGitHubPackageDownloader.spec.d.ts +1 -0
- package/build/main/core/src/tests/packages/TestRemotePackageDownloader.spec.d.ts +1 -0
- package/build/main/core/src/tests/packages/TestZipping.spec.d.ts +1 -0
- package/build/main/core/src/tests/scenarios/TestBrowserScenario.spec.d.ts +1 -0
- package/build/main/core/src/tests/scenarios/TestCIScenario.spec.d.ts +1 -0
- package/build/main/core/src/tools/Logger.d.ts +3 -0
- package/build/main/core/src/tools/LoggerDefaultMessages.d.ts +9 -0
- package/build/main/core/src/tools/Timer.d.ts +14 -0
- package/build/main/language/src/blueprints/Blueprint.d.ts +9 -0
- package/build/main/language/src/blueprints/BlueprintConfiguration.d.ts +17 -0
- package/build/main/language/src/blueprints/BlueprintFactory.d.ts +9 -0
- package/build/main/language/src/configuration/KeywordsFlows.d.ts +23 -0
- package/build/main/language/src/configuration/KeywordsFunctions.d.ts +12 -0
- package/build/main/language/src/configuration/KeywordsTranformers.d.ts +63 -0
- package/build/main/language/src/debugger/Debugger.d.ts +27 -0
- package/build/main/language/src/debugger/DebuggerErrorBuilder.d.ts +14 -0
- package/build/main/language/src/debugger/DebuggerErrors.d.ts +41 -0
- package/build/main/language/src/exports.d.ts +17 -0
- package/build/main/language/src/extensions/dsm/DSMBridge.d.ts +38 -0
- package/build/main/language/src/extensions/dsm/DSMDataCore.d.ts +135 -0
- package/build/main/language/src/extensions/dsm/DSMExecutionContext.d.ts +23 -0
- package/build/main/language/src/extensions/dsm/configuration/DSMKeywordsFunctions.d.ts +52 -0
- package/build/main/language/src/extensions/dsm/functions/assets/DSMFunctionAllAssets.d.ts +10 -0
- package/build/main/language/src/extensions/dsm/functions/assets/DSMFunctionAssetById.d.ts +10 -0
- package/build/main/language/src/extensions/dsm/functions/assets/DSMFunctionAssetsByGroupId.d.ts +10 -0
- package/build/main/language/src/extensions/dsm/functions/brands/DSMFunctionAllBrands.d.ts +10 -0
- package/build/main/language/src/extensions/dsm/functions/brands/DSMFunctionCurrentBrand.d.ts +10 -0
- package/build/main/language/src/extensions/dsm/functions/components/DSMFunctionAllComponents.d.ts +10 -0
- package/build/main/language/src/extensions/dsm/functions/components/DSMFunctionComponentById.d.ts +10 -0
- package/build/main/language/src/extensions/dsm/functions/configuration/DSMFunctionConfiguration.d.ts +10 -0
- package/build/main/language/src/extensions/dsm/functions/configuration/DSMFunctionPackageConfiguration.d.ts +10 -0
- package/build/main/language/src/extensions/dsm/functions/design_components/DSMFunctionAllDesignComponents.d.ts +10 -0
- package/build/main/language/src/extensions/dsm/functions/design_components/DSMFunctionDesignComponentById.d.ts +10 -0
- package/build/main/language/src/extensions/dsm/functions/design_system/DSMFunctionCurrentDesignSystem.d.ts +32 -0
- package/build/main/language/src/extensions/dsm/functions/design_system/DSMFunctionCurrentDesignSystemSwitcher.d.ts +19 -0
- package/build/main/language/src/extensions/dsm/functions/design_system/DSMFunctionDesignSystemById.d.ts +14 -0
- package/build/main/language/src/extensions/dsm/functions/design_system_version/DSMFunctionAllDesignSystemVersions.d.ts +10 -0
- package/build/main/language/src/extensions/dsm/functions/design_system_version/DSMFunctionCurrentDesignSystemVersion.d.ts +28 -0
- package/build/main/language/src/extensions/dsm/functions/documentation/DSMFunctionDocsAllGroups.d.ts +10 -0
- package/build/main/language/src/extensions/dsm/functions/documentation/DSMFunctionDocsAllPages.d.ts +10 -0
- package/build/main/language/src/extensions/dsm/functions/documentation/DSMFunctionDocsConfiguration.d.ts +10 -0
- package/build/main/language/src/extensions/dsm/functions/documentation/DSMFunctionDocsDomain.d.ts +10 -0
- package/build/main/language/src/extensions/dsm/functions/documentation/DSMFunctionDocsGroupById.d.ts +10 -0
- package/build/main/language/src/extensions/dsm/functions/documentation/DSMFunctionDocsPageById.d.ts +10 -0
- package/build/main/language/src/extensions/dsm/functions/documentation/DSMFunctionDocsPageToMarkdown.d.ts +10 -0
- package/build/main/language/src/extensions/dsm/functions/documentation/DSMFunctionDocsRootGroup.d.ts +10 -0
- package/build/main/language/src/extensions/dsm/functions/fonts/DSMFunctionFontIsBold.d.ts +10 -0
- package/build/main/language/src/extensions/dsm/functions/fonts/DSMFunctionFontIsItalic.d.ts +10 -0
- package/build/main/language/src/extensions/dsm/functions/fonts/DSMFunctionFontIsRegular.d.ts +10 -0
- package/build/main/language/src/extensions/dsm/functions/fonts/DSMFunctionFontWeight.d.ts +10 -0
- package/build/main/language/src/extensions/dsm/functions/groups/assets/DSMFunctionAllAssetGroups.d.ts +10 -0
- package/build/main/language/src/extensions/dsm/functions/groups/assets/DSMFunctionAssetGroupById.d.ts +10 -0
- package/build/main/language/src/extensions/dsm/functions/groups/assets/DSMFunctionAssetGroupContainingAssetId.d.ts +10 -0
- package/build/main/language/src/extensions/dsm/functions/groups/assets/DSMFunctionAssetGroupTree.d.ts +10 -0
- package/build/main/language/src/extensions/dsm/functions/groups/tokens/DSMFunctionAllTokenGroupTrees.d.ts +10 -0
- package/build/main/language/src/extensions/dsm/functions/groups/tokens/DSMFunctionAllTokenGroups.d.ts +10 -0
- package/build/main/language/src/extensions/dsm/functions/groups/tokens/DSMFunctionTokenGroupById.d.ts +10 -0
- package/build/main/language/src/extensions/dsm/functions/groups/tokens/DSMFunctionTokenGroupContainingTokenId.d.ts +10 -0
- package/build/main/language/src/extensions/dsm/functions/groups/tokens/DSMFunctionTokenGroupTreeByType.d.ts +10 -0
- package/build/main/language/src/extensions/dsm/functions/groups/tokens/DSMFunctionTokenGroupsByType.d.ts +10 -0
- package/build/main/language/src/extensions/dsm/functions/kvs/DSMFunctionKVSData.d.ts +10 -0
- package/build/main/language/src/extensions/dsm/functions/themes/DSMFunctionAllThemes.d.ts +10 -0
- package/build/main/language/src/extensions/dsm/functions/themes/DSMFunctionCurrentTheme.d.ts +10 -0
- package/build/main/language/src/extensions/dsm/functions/themes/DSMFunctionThemeById.d.ts +10 -0
- package/build/main/language/src/extensions/dsm/functions/tokens/DSMFunctionAllTokens.d.ts +10 -0
- package/build/main/language/src/extensions/dsm/functions/tokens/DSMFunctionAllTokensByApplyingThemes.d.ts +10 -0
- package/build/main/language/src/extensions/dsm/functions/tokens/DSMFunctionTokenById.d.ts +10 -0
- package/build/main/language/src/extensions/dsm/functions/tokens/DSMFunctionTokensByApplyingThemes.d.ts +10 -0
- package/build/main/language/src/extensions/dsm/functions/tokens/DSMFunctionTokensByGroupId.d.ts +10 -0
- package/build/main/language/src/extensions/dsm/functions/tokens/DSMFunctionTokensByType.d.ts +10 -0
- package/build/main/language/src/index.d.ts +1 -0
- package/build/main/language/src/interpreter/ExecutionContext.d.ts +56 -0
- package/build/main/language/src/interpreter/Interpreter.d.ts +33 -0
- package/build/main/language/src/interpreter/InterpreterContext.d.ts +9 -0
- package/build/main/language/src/interpreter/emitters/BlueprintEmitter.d.ts +5 -0
- package/build/main/language/src/interpreter/emitters/EmittedContent.d.ts +6 -0
- package/build/main/language/src/interpreter/emitters/MemoryBlueprintEmitter.d.ts +11 -0
- package/build/main/language/src/interpreter/flows/Flow.d.ts +37 -0
- package/build/main/language/src/interpreter/flows/FlowIterator.d.ts +25 -0
- package/build/main/language/src/interpreter/flows/FlowOutput.d.ts +9 -0
- package/build/main/language/src/interpreter/flows/FlowSource.d.ts +10 -0
- package/build/main/language/src/interpreter/flows/specific/code/FlowCodeMerge.d.ts +16 -0
- package/build/main/language/src/interpreter/flows/specific/debug/FlowLog.d.ts +18 -0
- package/build/main/language/src/interpreter/flows/specific/emit/FlowEmit.d.ts +16 -0
- package/build/main/language/src/interpreter/flows/specific/function/FlowImport.d.ts +16 -0
- package/build/main/language/src/interpreter/flows/specific/function/FlowReturn.d.ts +16 -0
- package/build/main/language/src/interpreter/flows/specific/if/FlowElse.d.ts +19 -0
- package/build/main/language/src/interpreter/flows/specific/if/FlowElseIf.d.ts +20 -0
- package/build/main/language/src/interpreter/flows/specific/if/FlowIf.d.ts +19 -0
- package/build/main/language/src/interpreter/flows/specific/inject/FlowInject.d.ts +16 -0
- package/build/main/language/src/interpreter/flows/specific/loops/FlowFor.d.ts +17 -0
- package/build/main/language/src/interpreter/flows/specific/loops/FlowMap.d.ts +17 -0
- package/build/main/language/src/interpreter/flows/specific/loops/FlowTraverse.d.ts +18 -0
- package/build/main/language/src/interpreter/flows/specific/loops/FlowTraverseChildren.d.ts +6 -0
- package/build/main/language/src/interpreter/flows/specific/switch/FlowCase.d.ts +17 -0
- package/build/main/language/src/interpreter/flows/specific/switch/FlowDefault.d.ts +16 -0
- package/build/main/language/src/interpreter/flows/specific/switch/FlowSwitch.d.ts +17 -0
- package/build/main/language/src/interpreter/flows/specific/var/FlowConst.d.ts +16 -0
- package/build/main/language/src/interpreter/flows/specific/var/FlowGlobal.d.ts +16 -0
- package/build/main/language/src/interpreter/flows/specific/var/FlowLet.d.ts +16 -0
- package/build/main/language/src/interpreter/flows/specific/var/FlowSet.d.ts +16 -0
- package/build/main/language/src/interpreter/functions/Function.d.ts +31 -0
- package/build/main/language/src/interpreter/functions/specific/blueprints/FunctionCall.d.ts +9 -0
- package/build/main/language/src/interpreter/functions/specific/network/FunctionNetworkGetAnonymous.d.ts +11 -0
- package/build/main/language/src/interpreter/functions/specific/random/FunctionRandomInt.d.ts +9 -0
- package/build/main/language/src/interpreter/functions/specific/random/FunctionRandomString.d.ts +9 -0
- package/build/main/language/src/interpreter/functions/specific/support/FunctionArraysToZippedMap.d.ts +9 -0
- package/build/main/language/src/interpreter/functions/specific/support/FunctionVarDefined.d.ts +9 -0
- package/build/main/language/src/interpreter/functions/specific/support/FunctionVarMutable.d.ts +9 -0
- package/build/main/language/src/interpreter/javascript/JSContext.d.ts +18 -0
- package/build/main/language/src/interpreter/javascript/JSContextBridge.d.ts +16 -0
- package/build/main/language/src/interpreter/javascript/JSFunction.d.ts +20 -0
- package/build/main/language/src/interpreter/javascript/JSTransformer.d.ts +30 -0
- package/build/main/language/src/interpreter/loaders/BlueprintLoader.d.ts +12 -0
- package/build/main/language/src/interpreter/loaders/MemoryBlueprintLoader.d.ts +10 -0
- package/build/main/language/src/interpreter/loggers/Logger.d.ts +47 -0
- package/build/main/language/src/interpreter/loggers/LoggerDefaultMessages.d.ts +14 -0
- package/build/main/language/src/interpreter/transformers/Transformer.d.ts +28 -0
- package/build/main/language/src/interpreter/transformers/specific/array/TransformerAppend.d.ts +10 -0
- package/build/main/language/src/interpreter/transformers/specific/array/TransformerConcat.d.ts +10 -0
- package/build/main/language/src/interpreter/transformers/specific/array/TransformerEnumerated.d.ts +10 -0
- package/build/main/language/src/interpreter/transformers/specific/array/TransformerFirst.d.ts +10 -0
- package/build/main/language/src/interpreter/transformers/specific/array/TransformerFrom.d.ts +10 -0
- package/build/main/language/src/interpreter/transformers/specific/array/TransformerJoin.d.ts +10 -0
- package/build/main/language/src/interpreter/transformers/specific/array/TransformerLast.d.ts +10 -0
- package/build/main/language/src/interpreter/transformers/specific/array/TransformerRandom.d.ts +10 -0
- package/build/main/language/src/interpreter/transformers/specific/array/TransformerRange.d.ts +10 -0
- package/build/main/language/src/interpreter/transformers/specific/array/TransformerReversed.d.ts +10 -0
- package/build/main/language/src/interpreter/transformers/specific/array/TransformerShuffled.d.ts +11 -0
- package/build/main/language/src/interpreter/transformers/specific/array/TransformerSorted.d.ts +10 -0
- package/build/main/language/src/interpreter/transformers/specific/array/TransformerUntil.d.ts +10 -0
- package/build/main/language/src/interpreter/transformers/specific/map/TransformerAdd.d.ts +10 -0
- package/build/main/language/src/interpreter/transformers/specific/map/TransformerKeys.d.ts +10 -0
- package/build/main/language/src/interpreter/transformers/specific/map/TransformerValues.d.ts +10 -0
- package/build/main/language/src/interpreter/transformers/specific/numeric/TransformerAbsolute.d.ts +10 -0
- package/build/main/language/src/interpreter/transformers/specific/numeric/TransformerCeiled.d.ts +10 -0
- package/build/main/language/src/interpreter/transformers/specific/numeric/TransformerFloored.d.ts +10 -0
- package/build/main/language/src/interpreter/transformers/specific/numeric/TransformerNegative.d.ts +10 -0
- package/build/main/language/src/interpreter/transformers/specific/numeric/TransformerPositive.d.ts +10 -0
- package/build/main/language/src/interpreter/transformers/specific/numeric/TransformerRounded.d.ts +11 -0
- package/build/main/language/src/interpreter/transformers/specific/shared/TransformerCount.d.ts +12 -0
- package/build/main/language/src/interpreter/transformers/specific/shared/TransformerEquals.d.ts +14 -0
- package/build/main/language/src/interpreter/transformers/specific/shared/TransformerFormatDate.d.ts +13 -0
- package/build/main/language/src/interpreter/transformers/specific/shared/TransformerIsArray.d.ts +14 -0
- package/build/main/language/src/interpreter/transformers/specific/shared/TransformerIsBool.d.ts +14 -0
- package/build/main/language/src/interpreter/transformers/specific/shared/TransformerIsNumber.d.ts +14 -0
- package/build/main/language/src/interpreter/transformers/specific/shared/TransformerIsObject.d.ts +14 -0
- package/build/main/language/src/interpreter/transformers/specific/shared/TransformerIsString.d.ts +14 -0
- package/build/main/language/src/interpreter/transformers/specific/shared/TransformerToString.d.ts +14 -0
- package/build/main/language/src/interpreter/transformers/specific/string/TransformerCamelcased.d.ts +10 -0
- package/build/main/language/src/interpreter/transformers/specific/string/TransformerCapitalized.d.ts +10 -0
- package/build/main/language/src/interpreter/transformers/specific/string/TransformerContains.d.ts +11 -0
- package/build/main/language/src/interpreter/transformers/specific/string/TransformerDefault.d.ts +11 -0
- package/build/main/language/src/interpreter/transformers/specific/string/TransformerEndsWith.d.ts +10 -0
- package/build/main/language/src/interpreter/transformers/specific/string/TransformerExtended.d.ts +10 -0
- package/build/main/language/src/interpreter/transformers/specific/string/TransformerLowercased.d.ts +10 -0
- package/build/main/language/src/interpreter/transformers/specific/string/TransformerPrefixed.d.ts +10 -0
- package/build/main/language/src/interpreter/transformers/specific/string/TransformerReplacing.d.ts +10 -0
- package/build/main/language/src/interpreter/transformers/specific/string/TransformerSlashDoubleQuotes.d.ts +10 -0
- package/build/main/language/src/interpreter/transformers/specific/string/TransformerSlashNewlines.d.ts +10 -0
- package/build/main/language/src/interpreter/transformers/specific/string/TransformerSlashSingleQuotes.d.ts +10 -0
- package/build/main/language/src/interpreter/transformers/specific/string/TransformerSnakecased.d.ts +10 -0
- package/build/main/language/src/interpreter/transformers/specific/string/TransformerSplit.d.ts +10 -0
- package/build/main/language/src/interpreter/transformers/specific/string/TransformerSplitExpr.d.ts +10 -0
- package/build/main/language/src/interpreter/transformers/specific/string/TransformerSplitNewlines.d.ts +10 -0
- package/build/main/language/src/interpreter/transformers/specific/string/TransformerStartsWith.d.ts +10 -0
- package/build/main/language/src/interpreter/transformers/specific/string/TransformerSubstring.d.ts +10 -0
- package/build/main/language/src/interpreter/transformers/specific/string/TransformerSuffixed.d.ts +10 -0
- package/build/main/language/src/interpreter/transformers/specific/string/TransformerTrimmingCharacter.d.ts +11 -0
- package/build/main/language/src/interpreter/transformers/specific/string/TransformerTrimmingSpaces.d.ts +10 -0
- package/build/main/language/src/interpreter/transformers/specific/string/TransformerUppercased.d.ts +10 -0
- package/build/main/language/src/interpreter/variables/Variable.d.ts +22 -0
- package/build/main/language/src/interpreter/variables/VariableContext.d.ts +14 -0
- package/build/main/language/src/parser/Tokenization/Concrete/ConcreteBuffer.d.ts +19 -0
- package/build/main/language/src/parser/Tokenization/Concrete/ConcreteParser.d.ts +25 -0
- package/build/main/language/src/parser/Tokenization/Concrete/ConcreteToken.d.ts +21 -0
- package/build/main/language/src/parser/Tokenization/Lexical/LexicalBuffer.d.ts +22 -0
- package/build/main/language/src/parser/Tokenization/Lexical/LexicalParser.d.ts +14 -0
- package/build/main/language/src/parser/Tokenization/Lexical/LexicalToken.d.ts +24 -0
- package/build/main/language/src/parser/errors/LanguageError.d.ts +5 -0
- package/build/main/language/src/parser/errors/LanguageErrorAnalysis.d.ts +26 -0
- package/build/main/language/src/parser/errors/LoggerErrorUtility.d.ts +8 -0
- package/build/main/language/src/parser/symbols/Symbol.d.ts +29 -0
- package/build/main/language/src/parser/symbols/SymbolBuffer.d.ts +16 -0
- package/build/main/language/src/parser/symbols/SymbolFactory.d.ts +27 -0
- package/build/main/language/src/parser/symbols/SymbolTable.d.ts +22 -0
- package/build/main/language/src/parser/symbols/SymbolType.d.ts +5 -0
- package/build/main/language/src/parser/syntax/SyntaxParser.d.ts +13 -0
- package/build/main/language/src/parser/syntax/SyntaxTree.d.ts +8 -0
- package/build/main/language/src/parser/syntax/nodes/SyntaxNode.d.ts +13 -0
- package/build/main/language/src/parser/syntax/nodes/SyntaxNodeFlow.d.ts +34 -0
- package/build/main/language/src/parser/syntax/nodes/SyntaxNodeGroup.d.ts +17 -0
- package/build/main/language/src/parser/syntax/nodes/SyntaxNodeText.d.ts +16 -0
- package/build/main/language/src/parser/syntax/nodes/substitution/SyntaxNodeSubstitution.d.ts +24 -0
- package/build/main/language/src/parser/syntax/nodes/substitution/SyntaxNodeSubstitutionAnalyzer.d.ts +21 -0
- package/build/main/language/src/parser/syntax/nodes/substitution/interpreters/SyntaxNodeSubstitutionAsyncInterpreter.d.ts +27 -0
- package/build/main/language/src/parser/syntax/nodes/substitution/interpreters/SyntaxNodeSubstitutionInterpreter.d.ts +10 -0
- package/build/main/language/src/parser/syntax/nodes/substitution/interpreters/SyntaxNodeSubstitutionSyncInterpreter.d.ts +25 -0
- package/build/main/language/src/tools/autocomplete/AutocompleteEngine.d.ts +31 -0
- package/build/main/language/src/tools/autocomplete/BlueprintAutocompleteEngine.d.ts +40 -0
- package/build/main/language/src/tools/autocomplete/BlueprintSnippets.d.ts +16 -0
- package/build/main/language/src/tools/autocomplete/PlaceholderDisabledSnippetPool.d.ts +34 -0
- package/build/main/language/src/tools/autocomplete/PlaceholderEnabledSnippetPool.d.ts +35 -0
- package/build/main/language/src/tools/documentation/DeclarationBuilder.d.ts +8 -0
- package/build/main/language/src/tools/documentation/Doc.d.ts +30 -0
- package/build/main/language/src/tools/documentation/Documentable.d.ts +4 -0
- package/build/main/language/src/tools/highlight/BlueprintHighlightEngine.d.ts +51 -0
- package/build/main/language/src/tools/highlight/BlueprintHighlightEngineState.d.ts +41 -0
- package/build/main/language/src/tools/highlight/HighlightEngine.d.ts +44 -0
- package/build/main/language/src/utils/FlowUtils.d.ts +5 -0
- package/build/main/language/src/utils/StringUtils.d.ts +72 -0
- package/package.json +4 -1
- package/images/image.png +0 -0
- package/scripts/travis-npm-publish.sh +0 -4
- package/shims/tmp-promise.js +0 -2
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
import { PLBlueprintEmitter } from './emitters/BlueprintEmitter';
|
|
2
|
+
import { PLBlueprintLoader } from './loaders/BlueprintLoader';
|
|
3
|
+
import { PLFlow } from './flows/Flow';
|
|
4
|
+
import { SyntaxNodeFlow } from './../parser/syntax/nodes/SyntaxNodeFlow';
|
|
5
|
+
import { PLFunction } from './functions/Function';
|
|
6
|
+
import { PLTransformer } from './transformers/Transformer';
|
|
7
|
+
import { PLLogger } from './loggers/Logger';
|
|
8
|
+
import { PLVariableContext } from './variables/VariableContext';
|
|
9
|
+
import { PLDebugger } from '../debugger/Debugger';
|
|
10
|
+
import { SyntaxNode } from '../parser/syntax/nodes/SyntaxNode';
|
|
11
|
+
import 'ses';
|
|
12
|
+
import { JSContext } from './javascript/JSContext';
|
|
13
|
+
import { PLBlueprintFactory } from '../blueprints/BlueprintFactory';
|
|
14
|
+
export declare class PLExecutionContext {
|
|
15
|
+
functions: Map<string, PLFunction>;
|
|
16
|
+
transformers: Map<string, PLTransformer>;
|
|
17
|
+
flows: Map<string, PLFlow>;
|
|
18
|
+
blueprintLoader: PLBlueprintLoader;
|
|
19
|
+
blueprintEmitter: PLBlueprintEmitter;
|
|
20
|
+
blueprintFactory: PLBlueprintFactory;
|
|
21
|
+
variableContext: PLVariableContext;
|
|
22
|
+
logger: PLLogger;
|
|
23
|
+
debugger: PLDebugger;
|
|
24
|
+
executedScope: Array<string>;
|
|
25
|
+
executedBlueprint: string;
|
|
26
|
+
executedNode: SyntaxNode;
|
|
27
|
+
jsContext: JSContext;
|
|
28
|
+
defaultTransformers: Array<PLTransformer>;
|
|
29
|
+
defaultFlows: Array<PLFlow>;
|
|
30
|
+
defaultFunctions: Array<PLFunction>;
|
|
31
|
+
constructor(load?: PLBlueprintLoader, emit?: PLBlueprintEmitter, log?: PLLogger, debug?: PLDebugger, construct?: PLBlueprintFactory);
|
|
32
|
+
provideCustomFunctions(): Array<PLFunction>;
|
|
33
|
+
provideCustomTransformers(): Array<PLTransformer>;
|
|
34
|
+
provideCustomFlows(): Array<PLFlow>;
|
|
35
|
+
registerDefaultFunctions(): void;
|
|
36
|
+
registerDefaultTransformers(): void;
|
|
37
|
+
registerDefaultFlows(): void;
|
|
38
|
+
provideTestFunction(): void;
|
|
39
|
+
registerFunction(fn: PLFunction): void;
|
|
40
|
+
registerTransformer(transformer: PLTransformer): void;
|
|
41
|
+
registerFlow(flow: PLFlow): void;
|
|
42
|
+
flow(key: string): PLFlow | null;
|
|
43
|
+
valueTransformer(): PLTransformer;
|
|
44
|
+
valueAlwaysRootTransformer(): PLTransformer;
|
|
45
|
+
transformer(key: string): PLTransformer | null;
|
|
46
|
+
function(key: string): PLFunction | null;
|
|
47
|
+
availableFlows(): Map<string, PLFlow>;
|
|
48
|
+
availableTransformers(): Map<string, PLTransformer>;
|
|
49
|
+
availableFunctions(): Map<string, PLFunction>;
|
|
50
|
+
setExecutedScopeForNode(node: SyntaxNodeFlow): void;
|
|
51
|
+
setExecutedScopeUsingScope(scope: Array<string>): void;
|
|
52
|
+
setExecutedBlueprint(id: string): void;
|
|
53
|
+
setExecutedNode(node: SyntaxNode): void;
|
|
54
|
+
getFunctionReturnStack(): Object[];
|
|
55
|
+
registerUsingJSHelper(helperCode: string): void;
|
|
56
|
+
}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { PLInterpreterContext } from './InterpreterContext';
|
|
2
|
+
import { PLBlueprintConfiguration } from './../blueprints/BlueprintConfiguration';
|
|
3
|
+
import { PLBlueprint } from '../blueprints/Blueprint';
|
|
4
|
+
import { PLExecutionContext } from './ExecutionContext';
|
|
5
|
+
import { SyntaxNode } from '../parser/syntax/nodes/SyntaxNode';
|
|
6
|
+
import { SyntaxNodeText } from '../parser/syntax/nodes/SyntaxNodeText';
|
|
7
|
+
import { SyntaxNodeSubstitution } from '../parser/syntax/nodes/substitution/SyntaxNodeSubstitution';
|
|
8
|
+
import { SyntaxNodeFlow } from './../parser/syntax/nodes/SyntaxNodeFlow';
|
|
9
|
+
import { FlowIteratorBodyResult } from './flows/FlowIterator';
|
|
10
|
+
import { SyntaxNodeGroup } from './../parser/syntax/nodes/SyntaxNodeGroup';
|
|
11
|
+
export declare class PLInterpreter {
|
|
12
|
+
blueprintConfiguration: PLBlueprintConfiguration;
|
|
13
|
+
currentlyInterpretingScope: Array<string>;
|
|
14
|
+
currentlyInterpretingBlueprint: PLBlueprint;
|
|
15
|
+
constructor(blueprintConfiguration?: PLBlueprintConfiguration | null);
|
|
16
|
+
interpret(blueprint: PLBlueprint, context: PLInterpreterContext, executionContext: PLExecutionContext, isInjected?: boolean): Promise<string>;
|
|
17
|
+
interpretGroupNode(groupNode: SyntaxNodeGroup, context: PLInterpreterContext, executionContext: PLExecutionContext): Promise<string>;
|
|
18
|
+
interpretTextNodeSync(node: SyntaxNodeText, context: PLInterpreterContext, executionContext: PLExecutionContext): string;
|
|
19
|
+
interpretSubstitutionNodeSync(node: SyntaxNodeSubstitution, context: PLInterpreterContext, executionContext: PLExecutionContext): string;
|
|
20
|
+
interpretSubstitutionNodeAsync(node: SyntaxNodeSubstitution, context: PLInterpreterContext, executionContext: PLExecutionContext): Promise<string>;
|
|
21
|
+
interpretFlowNode(node: SyntaxNodeFlow, context: PLInterpreterContext, rootContext: PLInterpreterContext, executionContext: PLExecutionContext): Promise<FlowIteratorBodyResult>;
|
|
22
|
+
processFlowBody(node: SyntaxNodeFlow, context: PLInterpreterContext, executionContext: PLExecutionContext): Promise<FlowIteratorBodyResult>;
|
|
23
|
+
processCustomExecutor(node: SyntaxNodeFlow, body: FlowIteratorBodyResult, context: PLInterpreterContext, executionContext: PLExecutionContext): Promise<FlowIteratorBodyResult>;
|
|
24
|
+
processContextAdjustmentIfNeeded(node: SyntaxNodeFlow, body: FlowIteratorBodyResult, context: PLInterpreterContext, executionContext: PLExecutionContext): PLInterpreterContext;
|
|
25
|
+
processVariableAdjustmentIfNeeded(node: SyntaxNodeFlow, scope: Array<string>, body: FlowIteratorBodyResult, context: PLInterpreterContext, executionContext: PLExecutionContext): Promise<PLExecutionContext>;
|
|
26
|
+
createNewExecutingScope(_executingContext: PLExecutionContext): Array<string>;
|
|
27
|
+
setExecutingScope(executionContext: PLExecutionContext, blueprint: PLBlueprint): void;
|
|
28
|
+
modifyExecutingScopeWithIncoming(node: SyntaxNodeFlow, executingContext: PLExecutionContext): Array<string>;
|
|
29
|
+
modifyExecutingScopeWithLeaving(node: SyntaxNodeFlow, executingContext: PLExecutionContext): Array<string>;
|
|
30
|
+
modifyExecutingScopeWithIncomingIteratorOf(_node: SyntaxNodeFlow, executingContext: PLExecutionContext): Array<string>;
|
|
31
|
+
modifyExecutingScopeWithLeavingIteratorOf(node: SyntaxNodeFlow, executingContext: PLExecutionContext): Array<string>;
|
|
32
|
+
setExecutingNode(executionContext: PLExecutionContext, node: SyntaxNode): void;
|
|
33
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { FlowAdjustment } from './flows/FlowIterator';
|
|
2
|
+
export declare class PLInterpreterContext {
|
|
3
|
+
data: Object;
|
|
4
|
+
constructor(data: Object, additions?: Object | null);
|
|
5
|
+
anyValueForKey(key: string, context: Object | null): any | null;
|
|
6
|
+
recreateContextWithAdjustments(adjustments: FlowAdjustment): PLInterpreterContext;
|
|
7
|
+
modifyContextWithAdjustments(adjustments: FlowAdjustment): PLInterpreterContext;
|
|
8
|
+
isEmpty(data: Object): boolean;
|
|
9
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { PLBlueprintEmitter } from './BlueprintEmitter';
|
|
2
|
+
import { PLEmittedContent } from './EmittedContent';
|
|
3
|
+
export declare class PLMemoryBlueprintEmitter extends PLBlueprintEmitter {
|
|
4
|
+
storage: Map<string, PLEmittedContent>;
|
|
5
|
+
isOverrideAllowed: boolean;
|
|
6
|
+
constructor(allowOverrides?: boolean);
|
|
7
|
+
emittedContentForFilename(filename: string): PLEmittedContent | null;
|
|
8
|
+
allEmittedContent(): Array<PLEmittedContent>;
|
|
9
|
+
clearEmittedFiles(): void;
|
|
10
|
+
emit(content: PLEmittedContent): void;
|
|
11
|
+
}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { PLBlueprintConfiguration } from './../../blueprints/BlueprintConfiguration';
|
|
2
|
+
import { PLInterpreterContext } from './../InterpreterContext';
|
|
3
|
+
import { PLExecutionContext } from '../ExecutionContext';
|
|
4
|
+
import { PLFlowSource } from './FlowSource';
|
|
5
|
+
import { FlowIterator, FlowIteratorBodyResult, FlowAdjustment } from './FlowIterator';
|
|
6
|
+
import { PLFlowOutput } from './FlowOutput';
|
|
7
|
+
export declare enum PLFlowExecutionType {
|
|
8
|
+
defaultBody = 0,
|
|
9
|
+
customBody = 1,
|
|
10
|
+
customWithoutBody = 2
|
|
11
|
+
}
|
|
12
|
+
export declare enum PLFlowFormatType {
|
|
13
|
+
keyword = 0,
|
|
14
|
+
source = 1,
|
|
15
|
+
output = 2
|
|
16
|
+
}
|
|
17
|
+
export declare enum PLFlowFormatRequirement {
|
|
18
|
+
required = 0,
|
|
19
|
+
optional = 1
|
|
20
|
+
}
|
|
21
|
+
export interface PLFlowFormat {
|
|
22
|
+
type: PLFlowFormatType;
|
|
23
|
+
requirement: PLFlowFormatRequirement;
|
|
24
|
+
definition: string;
|
|
25
|
+
}
|
|
26
|
+
export declare class PLFlow {
|
|
27
|
+
flowFormat(): Array<PLFlowFormat>;
|
|
28
|
+
keyword(): string;
|
|
29
|
+
chainableFlows(): Array<string> | null;
|
|
30
|
+
canFormChainRoot(): boolean;
|
|
31
|
+
executionType(): PLFlowExecutionType;
|
|
32
|
+
constructor();
|
|
33
|
+
createBodyIterator(_currentContext: PLInterpreterContext, _executionContext: PLExecutionContext, _outputs: Map<string, PLFlowOutput>, _sources: Map<string, PLFlowSource>, _keywords: Map<string, boolean>): Promise<FlowIterator>;
|
|
34
|
+
createFlowExecutor(_dataContext: PLInterpreterContext, _body: FlowIteratorBodyResult, _executionContext: PLExecutionContext, _configuration: PLBlueprintConfiguration, _outputs: Map<string, PLFlowOutput>, _sources: Map<string, PLFlowSource>, _keywords: Map<string, boolean>, _lineOffset: number, _firstLineDirective: boolean): Promise<string | null>;
|
|
35
|
+
adjustInterpretingContext(_dataContext: PLInterpreterContext, _body: FlowIteratorBodyResult, _executionContext: PLExecutionContext, _outputs: Map<string, PLFlowOutput>, _sources: Map<string, PLFlowSource>, _keywords: Map<string, boolean>): FlowAdjustment | null;
|
|
36
|
+
adjustExecutingContext(_dataContext: PLInterpreterContext, _body: FlowIteratorBodyResult, _executionContext: PLExecutionContext, _flowIdentifier: Array<string>, _outputs: Map<string, PLFlowOutput>, _sources: Map<string, PLFlowSource>, _keywords: Map<string, boolean>): Promise<unknown>;
|
|
37
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
export interface FlowIteratorBodyResult {
|
|
2
|
+
result: string | null;
|
|
3
|
+
iterator: FlowIterator;
|
|
4
|
+
skippedBody: boolean;
|
|
5
|
+
}
|
|
6
|
+
export declare enum FlowIteratorType {
|
|
7
|
+
skip = 0,
|
|
8
|
+
singular = 1,
|
|
9
|
+
iterative = 2,
|
|
10
|
+
followthrough = 3
|
|
11
|
+
}
|
|
12
|
+
export declare type FlowAdjustment = Object;
|
|
13
|
+
export declare class FlowIterator implements IterableIterator<FlowAdjustment> {
|
|
14
|
+
type: FlowIteratorType;
|
|
15
|
+
adjustments: Array<FlowAdjustment>;
|
|
16
|
+
followingContextEnhancement: FlowAdjustment | null;
|
|
17
|
+
constructor(adjustments: Array<FlowAdjustment>, type: FlowIteratorType, contextEnhancement: FlowAdjustment | null);
|
|
18
|
+
static followThroughExecution(followingContextEnhancement: FlowAdjustment | null): FlowIterator;
|
|
19
|
+
static noExecution(): FlowIterator;
|
|
20
|
+
static singleExecution(adjustment: FlowAdjustment): FlowIterator;
|
|
21
|
+
static iterativeExecution(adjustments: Array<FlowAdjustment>): FlowIterator;
|
|
22
|
+
private counter;
|
|
23
|
+
next(): IteratorResult<FlowAdjustment>;
|
|
24
|
+
[Symbol.iterator](): IterableIterator<FlowAdjustment>;
|
|
25
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { PLInterpreterContext } from './../InterpreterContext';
|
|
2
|
+
import { PLExecutionContext } from '../ExecutionContext';
|
|
3
|
+
import { SyntaxNodeSubstitution } from '../../parser/syntax/nodes/substitution/SyntaxNodeSubstitution';
|
|
4
|
+
export declare class PLFlowSource {
|
|
5
|
+
backingProperty: SyntaxNodeSubstitution;
|
|
6
|
+
constructor(source: SyntaxNodeSubstitution);
|
|
7
|
+
asValue(context: PLInterpreterContext, executionContext: PLExecutionContext): Promise<any | null>;
|
|
8
|
+
asString(): string;
|
|
9
|
+
directive(): string;
|
|
10
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { PLFlowOutput } from './../../FlowOutput';
|
|
2
|
+
import { PLInterpreterContext } from './../../../InterpreterContext';
|
|
3
|
+
import { FlowIterator } from './../../FlowIterator';
|
|
4
|
+
import { PLFlow, PLFlowFormat, PLFlowExecutionType } from './../../Flow';
|
|
5
|
+
import { PLExecutionContext } from '../../../ExecutionContext';
|
|
6
|
+
import { PLFlowSource } from '../../FlowSource';
|
|
7
|
+
import { PLBlueprintConfiguration } from './../../../../blueprints/BlueprintConfiguration';
|
|
8
|
+
import { FlowIteratorBodyResult, FlowAdjustment } from './../../FlowIterator';
|
|
9
|
+
export declare class PLFlowCodeMerge extends PLFlow {
|
|
10
|
+
flowFormat(): Array<PLFlowFormat>;
|
|
11
|
+
executionType(): PLFlowExecutionType;
|
|
12
|
+
createBodyIterator(_currentContext: PLInterpreterContext, _executionContext: PLExecutionContext, _outputs: Map<string, PLFlowOutput>, _sources: Map<string, PLFlowSource>, _keywords: Map<string, boolean>): Promise<FlowIterator>;
|
|
13
|
+
createFlowExecutor(_dataContext: PLInterpreterContext, _body: FlowIteratorBodyResult, _executionContext: PLExecutionContext, _configuration: PLBlueprintConfiguration, _outputs: Map<string, PLFlowOutput>, _sources: Map<string, PLFlowSource>, _keywords: Map<string, boolean>, lineOffset: number, _firstLineDirective: boolean): Promise<string | null>;
|
|
14
|
+
adjustInterpretingContext(_dataContext: PLInterpreterContext, _body: FlowIteratorBodyResult, _executionContext: PLExecutionContext, _outputs: Map<string, PLFlowOutput>, _sources: Map<string, PLFlowSource>, _keywords: Map<string, boolean>): FlowAdjustment | null;
|
|
15
|
+
adjustExecutingContext(_dataContext: PLInterpreterContext, _body: FlowIteratorBodyResult, _executionContext: PLExecutionContext, _flowIdentifier: Array<string>, _outputs: Map<string, PLFlowOutput>, _sources: Map<string, PLFlowSource>, _keywords: Map<string, boolean>): Promise<void>;
|
|
16
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { PLFlowOutput } from './../../FlowOutput';
|
|
2
|
+
import { PLInterpreterContext } from './../../../InterpreterContext';
|
|
3
|
+
import { FlowIterator } from './../../FlowIterator';
|
|
4
|
+
import { PLFlow, PLFlowFormat, PLFlowExecutionType } from './../../Flow';
|
|
5
|
+
import { PLExecutionContext } from '../../../ExecutionContext';
|
|
6
|
+
import { PLFlowSource } from '../../FlowSource';
|
|
7
|
+
import { PLBlueprintConfiguration } from './../../../../blueprints/BlueprintConfiguration';
|
|
8
|
+
import { FlowIteratorBodyResult, FlowAdjustment } from './../../FlowIterator';
|
|
9
|
+
export declare class PLFlowLog extends PLFlow {
|
|
10
|
+
flowFormat(): Array<PLFlowFormat>;
|
|
11
|
+
executionType(): PLFlowExecutionType;
|
|
12
|
+
createBodyIterator(_currentContext: PLInterpreterContext, _executionContext: PLExecutionContext, _outputs: Map<string, PLFlowOutput>, _sources: Map<string, PLFlowSource>, _keywords: Map<string, boolean>): Promise<FlowIterator>;
|
|
13
|
+
createFlowExecutor(_dataContext: PLInterpreterContext, _body: FlowIteratorBodyResult, _executionContext: PLExecutionContext, _configuration: PLBlueprintConfiguration, _outputs: Map<string, PLFlowOutput>, _sources: Map<string, PLFlowSource>, _keywords: Map<string, boolean>, _lineOffset: number, _firstLineDirective: boolean): Promise<string | null>;
|
|
14
|
+
adjustInterpretingContext(_dataContext: PLInterpreterContext, _body: FlowIteratorBodyResult, _executionContext: PLExecutionContext, _outputs: Map<string, PLFlowOutput>, _sources: Map<string, PLFlowSource>, _keywords: Map<string, boolean>): FlowAdjustment | null;
|
|
15
|
+
adjustExecutingContext(dataContext: PLInterpreterContext, _body: FlowIteratorBodyResult, executionContext: PLExecutionContext, _flowIdentifier: Array<string>, _outputs: Map<string, PLFlowOutput>, sources: Map<string, PLFlowSource>, _keywords: Map<string, boolean>): Promise<void>;
|
|
16
|
+
convertToString(variable: any | null): string;
|
|
17
|
+
getCircularReplacer: () => (key: any, value: any) => any;
|
|
18
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { PLFlowOutput } from './../../FlowOutput';
|
|
2
|
+
import { PLInterpreterContext } from './../../../InterpreterContext';
|
|
3
|
+
import { FlowIterator } from './../../FlowIterator';
|
|
4
|
+
import { PLFlow, PLFlowFormat, PLFlowExecutionType } from './../../Flow';
|
|
5
|
+
import { PLExecutionContext } from '../../../ExecutionContext';
|
|
6
|
+
import { PLFlowSource } from '../../FlowSource';
|
|
7
|
+
import { PLBlueprintConfiguration } from './../../../../blueprints/BlueprintConfiguration';
|
|
8
|
+
import { FlowIteratorBodyResult, FlowAdjustment } from './../../FlowIterator';
|
|
9
|
+
export declare class PLFlowEmit extends PLFlow {
|
|
10
|
+
flowFormat(): Array<PLFlowFormat>;
|
|
11
|
+
executionType(): PLFlowExecutionType;
|
|
12
|
+
createBodyIterator(_currentContext: PLInterpreterContext, _executionContext: PLExecutionContext, _outputs: Map<string, PLFlowOutput>, _sources: Map<string, PLFlowSource>, _keywords: Map<string, boolean>): Promise<FlowIterator>;
|
|
13
|
+
createFlowExecutor(dataContext: PLInterpreterContext, body: FlowIteratorBodyResult, executionContext: PLExecutionContext, _configuration: PLBlueprintConfiguration, _outputs: Map<string, PLFlowOutput>, sources: Map<string, PLFlowSource>, _keywords: Map<string, boolean>, _lineOffset: number, _firstLineDirective: boolean): Promise<string | null>;
|
|
14
|
+
adjustInterpretingContext(_dataContext: PLInterpreterContext, _body: FlowIteratorBodyResult, _executionContext: PLExecutionContext, _outputs: Map<string, PLFlowOutput>, _sources: Map<string, PLFlowSource>, _keywords: Map<string, boolean>): FlowAdjustment | null;
|
|
15
|
+
adjustExecutingContext(_dataContext: PLInterpreterContext, _body: FlowIteratorBodyResult, _executionContext: PLExecutionContext, _flowIdentifier: Array<string>, _outputs: Map<string, PLFlowOutput>, _sources: Map<string, PLFlowSource>, _keywords: Map<string, boolean>): Promise<void>;
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { PLFlowOutput } from './../../FlowOutput';
|
|
2
|
+
import { PLInterpreterContext } from './../../../InterpreterContext';
|
|
3
|
+
import { FlowIterator } from './../../FlowIterator';
|
|
4
|
+
import { PLFlow, PLFlowFormat, PLFlowExecutionType } from './../../Flow';
|
|
5
|
+
import { PLExecutionContext } from '../../../ExecutionContext';
|
|
6
|
+
import { PLFlowSource } from '../../FlowSource';
|
|
7
|
+
import { PLBlueprintConfiguration } from './../../../../blueprints/BlueprintConfiguration';
|
|
8
|
+
import { FlowIteratorBodyResult, FlowAdjustment } from './../../FlowIterator';
|
|
9
|
+
export declare class PLFlowImport extends PLFlow {
|
|
10
|
+
flowFormat(): Array<PLFlowFormat>;
|
|
11
|
+
executionType(): PLFlowExecutionType;
|
|
12
|
+
createBodyIterator(_currentContext: PLInterpreterContext, _executionContext: PLExecutionContext, _outputs: Map<string, PLFlowOutput>, _sources: Map<string, PLFlowSource>, _keywords: Map<string, boolean>): Promise<FlowIterator>;
|
|
13
|
+
createFlowExecutor(_dataContext: PLInterpreterContext, _body: FlowIteratorBodyResult, _executionContext: PLExecutionContext, _configuration: PLBlueprintConfiguration, _outputs: Map<string, PLFlowOutput>, _sources: Map<string, PLFlowSource>, _keywords: Map<string, boolean>, _lineOffset: number, _firstLineDirective: boolean): Promise<string | null>;
|
|
14
|
+
adjustInterpretingContext(_dataContext: PLInterpreterContext, _body: FlowIteratorBodyResult, _executionContext: PLExecutionContext, _outputs: Map<string, PLFlowOutput>, _sources: Map<string, PLFlowSource>, _keywords: Map<string, boolean>): FlowAdjustment | null;
|
|
15
|
+
adjustExecutingContext(dataContext: PLInterpreterContext, _body: FlowIteratorBodyResult, executionContext: PLExecutionContext, flowIdentifier: Array<string>, outputs: Map<string, PLFlowOutput>, sources: Map<string, PLFlowSource>, _keywords: Map<string, boolean>): Promise<void>;
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { PLFlowOutput } from './../../FlowOutput';
|
|
2
|
+
import { PLInterpreterContext } from './../../../InterpreterContext';
|
|
3
|
+
import { FlowIterator } from './../../FlowIterator';
|
|
4
|
+
import { PLFlow, PLFlowFormat, PLFlowExecutionType } from './../../Flow';
|
|
5
|
+
import { PLExecutionContext } from '../../../ExecutionContext';
|
|
6
|
+
import { PLFlowSource } from '../../FlowSource';
|
|
7
|
+
import { PLBlueprintConfiguration } from './../../../../blueprints/BlueprintConfiguration';
|
|
8
|
+
import { FlowIteratorBodyResult, FlowAdjustment } from './../../FlowIterator';
|
|
9
|
+
export declare class PLFlowReturn extends PLFlow {
|
|
10
|
+
flowFormat(): Array<PLFlowFormat>;
|
|
11
|
+
executionType(): PLFlowExecutionType;
|
|
12
|
+
createBodyIterator(_currentContext: PLInterpreterContext, _executionContext: PLExecutionContext, _outputs: Map<string, PLFlowOutput>, _sources: Map<string, PLFlowSource>, _keywords: Map<string, boolean>): Promise<FlowIterator>;
|
|
13
|
+
createFlowExecutor(_dataContext: PLInterpreterContext, _body: FlowIteratorBodyResult, _executionContext: PLExecutionContext, _configuration: PLBlueprintConfiguration, _outputs: Map<string, PLFlowOutput>, _sources: Map<string, PLFlowSource>, _keywords: Map<string, boolean>, _lineOffset: number, _firstLineDirective: boolean): Promise<string | null>;
|
|
14
|
+
adjustInterpretingContext(_dataContext: PLInterpreterContext, _body: FlowIteratorBodyResult, _executionContext: PLExecutionContext, _outputs: Map<string, PLFlowOutput>, _sources: Map<string, PLFlowSource>, _keywords: Map<string, boolean>): FlowAdjustment | null;
|
|
15
|
+
adjustExecutingContext(dataContext: PLInterpreterContext, _body: FlowIteratorBodyResult, executionContext: PLExecutionContext, _flowIdentifier: Array<string>, _outputs: Map<string, PLFlowOutput>, sources: Map<string, PLFlowSource>, _keywords: Map<string, boolean>): Promise<void>;
|
|
16
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { PLFlowOutput } from './../../FlowOutput';
|
|
2
|
+
import { PLInterpreterContext } from './../../../InterpreterContext';
|
|
3
|
+
import { FlowIterator } from './../../FlowIterator';
|
|
4
|
+
import { PLFlow, PLFlowFormat, PLFlowExecutionType } from './../../Flow';
|
|
5
|
+
import { PLExecutionContext } from '../../../ExecutionContext';
|
|
6
|
+
import { PLFlowSource } from '../../FlowSource';
|
|
7
|
+
import { PLBlueprintConfiguration } from './../../../../blueprints/BlueprintConfiguration';
|
|
8
|
+
import { FlowIteratorBodyResult, FlowAdjustment } from './../../FlowIterator';
|
|
9
|
+
export declare class PLFlowElse extends PLFlow {
|
|
10
|
+
flowFormat(): Array<PLFlowFormat>;
|
|
11
|
+
canFormChainRoot(): boolean;
|
|
12
|
+
executionType(): PLFlowExecutionType;
|
|
13
|
+
createBodyIterator(_currentContext: PLInterpreterContext, _executionContext: PLExecutionContext, _outputs: Map<string, PLFlowOutput>, _sources: Map<string, PLFlowSource>, _keywords: Map<string, boolean>): Promise<FlowIterator>;
|
|
14
|
+
resolveAsTrue(): Promise<FlowIterator>;
|
|
15
|
+
resolveAsFalse(): Promise<FlowIterator>;
|
|
16
|
+
createFlowExecutor(_dataContext: PLInterpreterContext, _body: FlowIteratorBodyResult, _executionContext: PLExecutionContext, _configuration: PLBlueprintConfiguration, _outputs: Map<string, PLFlowOutput>, _sources: Map<string, PLFlowSource>, _keywords: Map<string, boolean>, _lineOffset: number, _firstLineDirective: boolean): Promise<string | null>;
|
|
17
|
+
adjustInterpretingContext(_dataContext: PLInterpreterContext, _body: FlowIteratorBodyResult, _executionContext: PLExecutionContext, _outputs: Map<string, PLFlowOutput>, _sources: Map<string, PLFlowSource>, _keywords: Map<string, boolean>): FlowAdjustment | null;
|
|
18
|
+
adjustExecutingContext(_dataContext: PLInterpreterContext, _body: FlowIteratorBodyResult, _executionContext: PLExecutionContext, _flowIdentifier: Array<string>, _outputs: Map<string, PLFlowOutput>, _sources: Map<string, PLFlowSource>, _keywords: Map<string, boolean>): Promise<void>;
|
|
19
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { PLFlowOutput } from './../../FlowOutput';
|
|
2
|
+
import { PLInterpreterContext } from './../../../InterpreterContext';
|
|
3
|
+
import { FlowIterator } from './../../FlowIterator';
|
|
4
|
+
import { PLFlow, PLFlowFormat, PLFlowExecutionType } from './../../Flow';
|
|
5
|
+
import { PLExecutionContext } from '../../../ExecutionContext';
|
|
6
|
+
import { PLFlowSource } from '../../FlowSource';
|
|
7
|
+
import { PLBlueprintConfiguration } from './../../../../blueprints/BlueprintConfiguration';
|
|
8
|
+
import { FlowIteratorBodyResult, FlowAdjustment } from './../../FlowIterator';
|
|
9
|
+
export declare class PLFlowElseIf extends PLFlow {
|
|
10
|
+
flowFormat(): Array<PLFlowFormat>;
|
|
11
|
+
chainableFlows(): Array<string> | null;
|
|
12
|
+
canFormChainRoot(): boolean;
|
|
13
|
+
executionType(): PLFlowExecutionType;
|
|
14
|
+
createBodyIterator(_currentContext: PLInterpreterContext, _executionContext: PLExecutionContext, _outputs: Map<string, PLFlowOutput>, sources: Map<string, PLFlowSource>, _keywords: Map<string, boolean>): Promise<FlowIterator>;
|
|
15
|
+
resolveAsTrue(): Promise<FlowIterator>;
|
|
16
|
+
resolveAsFalse(): Promise<FlowIterator>;
|
|
17
|
+
createFlowExecutor(_dataContext: PLInterpreterContext, _body: FlowIteratorBodyResult, _executionContext: PLExecutionContext, _configuration: PLBlueprintConfiguration, _outputs: Map<string, PLFlowOutput>, _sources: Map<string, PLFlowSource>, _keywords: Map<string, boolean>, _lineOffset: number, _firstLineDirective: boolean): Promise<string | null>;
|
|
18
|
+
adjustInterpretingContext(_dataContext: PLInterpreterContext, _body: FlowIteratorBodyResult, _executionContext: PLExecutionContext, _outputs: Map<string, PLFlowOutput>, _sources: Map<string, PLFlowSource>, _keywords: Map<string, boolean>): FlowAdjustment | null;
|
|
19
|
+
adjustExecutingContext(_dataContext: PLInterpreterContext, _body: FlowIteratorBodyResult, _executionContext: PLExecutionContext, _flowIdentifier: Array<string>, _outputs: Map<string, PLFlowOutput>, _sources: Map<string, PLFlowSource>, _keywords: Map<string, boolean>): Promise<void>;
|
|
20
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { PLFlowOutput } from './../../FlowOutput';
|
|
2
|
+
import { PLInterpreterContext } from './../../../InterpreterContext';
|
|
3
|
+
import { FlowIterator } from './../../FlowIterator';
|
|
4
|
+
import { PLFlow, PLFlowFormat, PLFlowExecutionType } from './../../Flow';
|
|
5
|
+
import { PLExecutionContext } from '../../../ExecutionContext';
|
|
6
|
+
import { PLFlowSource } from '../../FlowSource';
|
|
7
|
+
import { PLBlueprintConfiguration } from './../../../../blueprints/BlueprintConfiguration';
|
|
8
|
+
import { FlowIteratorBodyResult, FlowAdjustment } from './../../FlowIterator';
|
|
9
|
+
export declare class PLFlowIf extends PLFlow {
|
|
10
|
+
flowFormat(): Array<PLFlowFormat>;
|
|
11
|
+
chainableFlows(): Array<string> | null;
|
|
12
|
+
executionType(): PLFlowExecutionType;
|
|
13
|
+
createBodyIterator(_currentContext: PLInterpreterContext, _executionContext: PLExecutionContext, _outputs: Map<string, PLFlowOutput>, sources: Map<string, PLFlowSource>, _keywords: Map<string, boolean>): Promise<FlowIterator>;
|
|
14
|
+
resolveAsTrue(): Promise<FlowIterator>;
|
|
15
|
+
resolveAsFalse(): Promise<FlowIterator>;
|
|
16
|
+
createFlowExecutor(_dataContext: PLInterpreterContext, _body: FlowIteratorBodyResult, _executionContext: PLExecutionContext, _configuration: PLBlueprintConfiguration, _outputs: Map<string, PLFlowOutput>, _sources: Map<string, PLFlowSource>, _keywords: Map<string, boolean>, _lineOffset: number, _firstLineDirective: boolean): Promise<string | null>;
|
|
17
|
+
adjustInterpretingContext(_dataContext: PLInterpreterContext, _body: FlowIteratorBodyResult, _executionContext: PLExecutionContext, _outputs: Map<string, PLFlowOutput>, _sources: Map<string, PLFlowSource>, _keywords: Map<string, boolean>): FlowAdjustment | null;
|
|
18
|
+
adjustExecutingContext(_dataContext: PLInterpreterContext, _body: FlowIteratorBodyResult, _executionContext: PLExecutionContext, _flowIdentifier: Array<string>, _outputs: Map<string, PLFlowOutput>, _sources: Map<string, PLFlowSource>, _keywords: Map<string, boolean>): Promise<void>;
|
|
19
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { PLFlowOutput } from './../../FlowOutput';
|
|
2
|
+
import { PLInterpreterContext } from './../../../InterpreterContext';
|
|
3
|
+
import { FlowIterator } from './../../FlowIterator';
|
|
4
|
+
import { PLFlow, PLFlowFormat, PLFlowExecutionType } from './../../Flow';
|
|
5
|
+
import { PLExecutionContext } from '../../../ExecutionContext';
|
|
6
|
+
import { PLFlowSource } from '../../FlowSource';
|
|
7
|
+
import { PLBlueprintConfiguration } from './../../../../blueprints/BlueprintConfiguration';
|
|
8
|
+
import { FlowIteratorBodyResult, FlowAdjustment } from './../../FlowIterator';
|
|
9
|
+
export declare class PLFlowInject extends PLFlow {
|
|
10
|
+
flowFormat(): Array<PLFlowFormat>;
|
|
11
|
+
executionType(): PLFlowExecutionType;
|
|
12
|
+
createBodyIterator(_currentContext: PLInterpreterContext, _executionContext: PLExecutionContext, _outputs: Map<string, PLFlowOutput>, _sources: Map<string, PLFlowSource>, _keywords: Map<string, boolean>): Promise<FlowIterator>;
|
|
13
|
+
createFlowExecutor(dataContext: PLInterpreterContext, body: FlowIteratorBodyResult, executionContext: PLExecutionContext, configuration: PLBlueprintConfiguration, outputs: Map<string, PLFlowOutput>, sources: Map<string, PLFlowSource>, _keywords: Map<string, boolean>, lineOffset: number, firstLineDirective: boolean): Promise<string | null>;
|
|
14
|
+
adjustInterpretingContext(_dataContext: PLInterpreterContext, _body: FlowIteratorBodyResult, _executionContext: PLExecutionContext, _outputs: Map<string, PLFlowOutput>, _sources: Map<string, PLFlowSource>, _keywords: Map<string, boolean>): FlowAdjustment | null;
|
|
15
|
+
adjustExecutingContext(_dataContext: PLInterpreterContext, _body: FlowIteratorBodyResult, _executionContext: PLExecutionContext, _flowIdentifier: Array<string>, _outputs: Map<string, PLFlowOutput>, _sources: Map<string, PLFlowSource>, _keywords: Map<string, boolean>): Promise<void>;
|
|
16
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { PLFlowOutput } from './../../FlowOutput';
|
|
2
|
+
import { PLInterpreterContext } from './../../../InterpreterContext';
|
|
3
|
+
import { FlowIterator } from './../../FlowIterator';
|
|
4
|
+
import { PLFlow, PLFlowFormat, PLFlowExecutionType } from './../../Flow';
|
|
5
|
+
import { PLExecutionContext } from '../../../ExecutionContext';
|
|
6
|
+
import { PLFlowSource } from '../../FlowSource';
|
|
7
|
+
import { PLBlueprintConfiguration } from './../../../../blueprints/BlueprintConfiguration';
|
|
8
|
+
import { FlowIteratorBodyResult, FlowAdjustment } from './../../FlowIterator';
|
|
9
|
+
export declare class PLFlowFor extends PLFlow {
|
|
10
|
+
flowFormat(): Array<PLFlowFormat>;
|
|
11
|
+
chainableFlows(): Array<string> | null;
|
|
12
|
+
executionType(): PLFlowExecutionType;
|
|
13
|
+
createBodyIterator(currentContext: PLInterpreterContext, executionContext: PLExecutionContext, outputs: Map<string, PLFlowOutput>, sources: Map<string, PLFlowSource>, _keywords: Map<string, boolean>): Promise<FlowIterator>;
|
|
14
|
+
createFlowExecutor(_dataContext: PLInterpreterContext, _body: FlowIteratorBodyResult, _executionContext: PLExecutionContext, _configuration: PLBlueprintConfiguration, _outputs: Map<string, PLFlowOutput>, _sources: Map<string, PLFlowSource>, _keywords: Map<string, boolean>, _lineOffset: number, _firstLineDirective: boolean): Promise<string | null>;
|
|
15
|
+
adjustInterpretingContext(_dataContext: PLInterpreterContext, _body: FlowIteratorBodyResult, _executionContext: PLExecutionContext, _outputs: Map<string, PLFlowOutput>, _sources: Map<string, PLFlowSource>, _keywords: Map<string, boolean>): FlowAdjustment | null;
|
|
16
|
+
adjustExecutingContext(_dataContext: PLInterpreterContext, _body: FlowIteratorBodyResult, _executionContext: PLExecutionContext, _flowIdentifier: Array<string>, _outputs: Map<string, PLFlowOutput>, _sources: Map<string, PLFlowSource>, _keywords: Map<string, boolean>): Promise<void>;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { PLFlowOutput } from './../../FlowOutput';
|
|
2
|
+
import { PLInterpreterContext } from './../../../InterpreterContext';
|
|
3
|
+
import { FlowIterator } from './../../FlowIterator';
|
|
4
|
+
import { PLFlow, PLFlowFormat, PLFlowExecutionType } from './../../Flow';
|
|
5
|
+
import { PLExecutionContext } from '../../../ExecutionContext';
|
|
6
|
+
import { PLFlowSource } from '../../FlowSource';
|
|
7
|
+
import { PLBlueprintConfiguration } from './../../../../blueprints/BlueprintConfiguration';
|
|
8
|
+
import { FlowIteratorBodyResult, FlowAdjustment } from './../../FlowIterator';
|
|
9
|
+
export declare class PLFlowMap extends PLFlow {
|
|
10
|
+
flowFormat(): Array<PLFlowFormat>;
|
|
11
|
+
chainableFlows(): Array<string> | null;
|
|
12
|
+
executionType(): PLFlowExecutionType;
|
|
13
|
+
createBodyIterator(currentContext: PLInterpreterContext, executionContext: PLExecutionContext, outputs: Map<string, PLFlowOutput>, sources: Map<string, PLFlowSource>, _keywords: Map<string, boolean>): Promise<FlowIterator>;
|
|
14
|
+
createFlowExecutor(_dataContext: PLInterpreterContext, _body: FlowIteratorBodyResult, _executionContext: PLExecutionContext, _configuration: PLBlueprintConfiguration, _outputs: Map<string, PLFlowOutput>, _sources: Map<string, PLFlowSource>, _keywords: Map<string, boolean>, _lineOffset: number, _firstLineDirective: boolean): Promise<string | null>;
|
|
15
|
+
adjustInterpretingContext(_dataContext: PLInterpreterContext, _body: FlowIteratorBodyResult, _executionContext: PLExecutionContext, _outputs: Map<string, PLFlowOutput>, _sources: Map<string, PLFlowSource>, _keywords: Map<string, boolean>): FlowAdjustment | null;
|
|
16
|
+
adjustExecutingContext(_dataContext: PLInterpreterContext, _body: FlowIteratorBodyResult, _executionContext: PLExecutionContext, _flowIdentifier: Array<string>, _outputs: Map<string, PLFlowOutput>, _sources: Map<string, PLFlowSource>, _keywords: Map<string, boolean>): Promise<void>;
|
|
17
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { PLFlowOutput } from './../../FlowOutput';
|
|
2
|
+
import { PLInterpreterContext } from './../../../InterpreterContext';
|
|
3
|
+
import { FlowIterator } from './../../FlowIterator';
|
|
4
|
+
import { PLFlow, PLFlowFormat, PLFlowExecutionType } from './../../Flow';
|
|
5
|
+
import { PLExecutionContext } from '../../../ExecutionContext';
|
|
6
|
+
import { PLFlowSource } from '../../FlowSource';
|
|
7
|
+
import { PLBlueprintConfiguration } from './../../../../blueprints/BlueprintConfiguration';
|
|
8
|
+
import { FlowIteratorBodyResult, FlowAdjustment } from './../../FlowIterator';
|
|
9
|
+
export declare class PLFlowTraverse extends PLFlow {
|
|
10
|
+
flowFormat(): Array<PLFlowFormat>;
|
|
11
|
+
executionType(): PLFlowExecutionType;
|
|
12
|
+
excludeRootData(): boolean;
|
|
13
|
+
createBodyIterator(currentContext: PLInterpreterContext, executionContext: PLExecutionContext, outputs: Map<string, PLFlowOutput>, sources: Map<string, PLFlowSource>, _keywords: Map<string, boolean>): Promise<FlowIterator>;
|
|
14
|
+
traverseMakeContext(context: Object, key: string, bindTo: string): Array<FlowAdjustment>;
|
|
15
|
+
createFlowExecutor(_dataContext: PLInterpreterContext, _body: FlowIteratorBodyResult, _executionContext: PLExecutionContext, _configuration: PLBlueprintConfiguration, _outputs: Map<string, PLFlowOutput>, _sources: Map<string, PLFlowSource>, _keywords: Map<string, boolean>, _lineOffset: number, _firstLineDirective: boolean): Promise<string | null>;
|
|
16
|
+
adjustInterpretingContext(_dataContext: PLInterpreterContext, _body: FlowIteratorBodyResult, _executionContext: PLExecutionContext, _outputs: Map<string, PLFlowOutput>, _sources: Map<string, PLFlowSource>, _keywords: Map<string, boolean>): FlowAdjustment | null;
|
|
17
|
+
adjustExecutingContext(_dataContext: PLInterpreterContext, _body: FlowIteratorBodyResult, _executionContext: PLExecutionContext, _flowIdentifier: Array<string>, _outputs: Map<string, PLFlowOutput>, _sources: Map<string, PLFlowSource>, _keywords: Map<string, boolean>): Promise<void>;
|
|
18
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { PLFlowOutput } from './../../FlowOutput';
|
|
2
|
+
import { PLInterpreterContext } from './../../../InterpreterContext';
|
|
3
|
+
import { FlowIterator } from './../../FlowIterator';
|
|
4
|
+
import { PLFlow, PLFlowFormat, PLFlowExecutionType } from './../../Flow';
|
|
5
|
+
import { PLExecutionContext } from '../../../ExecutionContext';
|
|
6
|
+
import { PLFlowSource } from '../../FlowSource';
|
|
7
|
+
import { PLBlueprintConfiguration } from './../../../../blueprints/BlueprintConfiguration';
|
|
8
|
+
import { FlowIteratorBodyResult, FlowAdjustment } from './../../FlowIterator';
|
|
9
|
+
export declare class PLFlowCase extends PLFlow {
|
|
10
|
+
flowFormat(): Array<PLFlowFormat>;
|
|
11
|
+
chainableFlows(): Array<string> | null;
|
|
12
|
+
executionType(): PLFlowExecutionType;
|
|
13
|
+
createBodyIterator(currentContext: PLInterpreterContext, _executionContext: PLExecutionContext, outputs: Map<string, PLFlowOutput>, _sources: Map<string, PLFlowSource>, _keywords: Map<string, boolean>): Promise<FlowIterator>;
|
|
14
|
+
createFlowExecutor(_dataContext: PLInterpreterContext, _body: FlowIteratorBodyResult, _executionContext: PLExecutionContext, _configuration: PLBlueprintConfiguration, _outputs: Map<string, PLFlowOutput>, _sources: Map<string, PLFlowSource>, _keywords: Map<string, boolean>, _lineOffset: number, _firstLineDirective: boolean): Promise<string | null>;
|
|
15
|
+
adjustInterpretingContext(_dataContext: PLInterpreterContext, _body: FlowIteratorBodyResult, _executionContext: PLExecutionContext, _outputs: Map<string, PLFlowOutput>, _sources: Map<string, PLFlowSource>, _keywords: Map<string, boolean>): FlowAdjustment | null;
|
|
16
|
+
adjustExecutingContext(_dataContext: PLInterpreterContext, _body: FlowIteratorBodyResult, _executionContext: PLExecutionContext, _flowIdentifier: Array<string>, _outputs: Map<string, PLFlowOutput>, _sources: Map<string, PLFlowSource>, _keywords: Map<string, boolean>): Promise<void>;
|
|
17
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { PLFlowOutput } from './../../FlowOutput';
|
|
2
|
+
import { PLInterpreterContext } from './../../../InterpreterContext';
|
|
3
|
+
import { FlowIterator } from './../../FlowIterator';
|
|
4
|
+
import { PLFlow, PLFlowFormat, PLFlowExecutionType } from './../../Flow';
|
|
5
|
+
import { PLExecutionContext } from '../../../ExecutionContext';
|
|
6
|
+
import { PLFlowSource } from '../../FlowSource';
|
|
7
|
+
import { PLBlueprintConfiguration } from './../../../../blueprints/BlueprintConfiguration';
|
|
8
|
+
import { FlowIteratorBodyResult, FlowAdjustment } from './../../FlowIterator';
|
|
9
|
+
export declare class PLFlowDefault extends PLFlow {
|
|
10
|
+
flowFormat(): Array<PLFlowFormat>;
|
|
11
|
+
executionType(): PLFlowExecutionType;
|
|
12
|
+
createBodyIterator(_currentContext: PLInterpreterContext, _executionContext: PLExecutionContext, _outputs: Map<string, PLFlowOutput>, _sources: Map<string, PLFlowSource>, _keywords: Map<string, boolean>): Promise<FlowIterator>;
|
|
13
|
+
createFlowExecutor(_dataContext: PLInterpreterContext, _body: FlowIteratorBodyResult, _executionContext: PLExecutionContext, _configuration: PLBlueprintConfiguration, _outputs: Map<string, PLFlowOutput>, _sources: Map<string, PLFlowSource>, _keywords: Map<string, boolean>, _lineOffset: number, _firstLineDirective: boolean): Promise<string | null>;
|
|
14
|
+
adjustInterpretingContext(_dataContext: PLInterpreterContext, _body: FlowIteratorBodyResult, _executionContext: PLExecutionContext, _outputs: Map<string, PLFlowOutput>, _sources: Map<string, PLFlowSource>, _keywords: Map<string, boolean>): FlowAdjustment | null;
|
|
15
|
+
adjustExecutingContext(_dataContext: PLInterpreterContext, _body: FlowIteratorBodyResult, _executionContext: PLExecutionContext, _flowIdentifier: Array<string>, _outputs: Map<string, PLFlowOutput>, _sources: Map<string, PLFlowSource>, _keywords: Map<string, boolean>): Promise<void>;
|
|
16
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { PLFlowOutput } from './../../FlowOutput';
|
|
2
|
+
import { PLInterpreterContext } from './../../../InterpreterContext';
|
|
3
|
+
import { FlowIterator } from './../../FlowIterator';
|
|
4
|
+
import { PLFlow, PLFlowFormat, PLFlowExecutionType } from './../../Flow';
|
|
5
|
+
import { PLExecutionContext } from '../../../ExecutionContext';
|
|
6
|
+
import { PLFlowSource } from '../../FlowSource';
|
|
7
|
+
import { PLBlueprintConfiguration } from './../../../../blueprints/BlueprintConfiguration';
|
|
8
|
+
import { FlowIteratorBodyResult, FlowAdjustment } from './../../FlowIterator';
|
|
9
|
+
export declare class PLFlowSwitch extends PLFlow {
|
|
10
|
+
flowFormat(): Array<PLFlowFormat>;
|
|
11
|
+
chainableFlows(): Array<string> | null;
|
|
12
|
+
executionType(): PLFlowExecutionType;
|
|
13
|
+
createBodyIterator(currentContext: PLInterpreterContext, executionContext: PLExecutionContext, _outputs: Map<string, PLFlowOutput>, sources: Map<string, PLFlowSource>, _keywords: Map<string, boolean>): Promise<FlowIterator>;
|
|
14
|
+
createFlowExecutor(_dataContext: PLInterpreterContext, _body: FlowIteratorBodyResult, _executionContext: PLExecutionContext, _configuration: PLBlueprintConfiguration, _outputs: Map<string, PLFlowOutput>, _sources: Map<string, PLFlowSource>, _keywords: Map<string, boolean>, _lineOffset: number, _firstLineDirective: boolean): Promise<string | null>;
|
|
15
|
+
adjustInterpretingContext(_dataContext: PLInterpreterContext, _body: FlowIteratorBodyResult, _executionContext: PLExecutionContext, _outputs: Map<string, PLFlowOutput>, _sources: Map<string, PLFlowSource>, _keywords: Map<string, boolean>): FlowAdjustment | null;
|
|
16
|
+
adjustExecutingContext(_dataContext: PLInterpreterContext, _body: FlowIteratorBodyResult, _executionContext: PLExecutionContext, _flowIdentifier: Array<string>, _outputs: Map<string, PLFlowOutput>, _sources: Map<string, PLFlowSource>, _keywords: Map<string, boolean>): Promise<void>;
|
|
17
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { PLFlowOutput } from '../../FlowOutput';
|
|
2
|
+
import { PLInterpreterContext } from '../../../InterpreterContext';
|
|
3
|
+
import { FlowIterator } from '../../FlowIterator';
|
|
4
|
+
import { PLFlow, PLFlowFormat, PLFlowExecutionType } from '../../Flow';
|
|
5
|
+
import { PLExecutionContext } from '../../../ExecutionContext';
|
|
6
|
+
import { PLFlowSource } from '../../FlowSource';
|
|
7
|
+
import { PLBlueprintConfiguration } from '../../../../blueprints/BlueprintConfiguration';
|
|
8
|
+
import { FlowIteratorBodyResult, FlowAdjustment } from '../../FlowIterator';
|
|
9
|
+
export declare class PLFlowConst extends PLFlow {
|
|
10
|
+
flowFormat(): Array<PLFlowFormat>;
|
|
11
|
+
executionType(): PLFlowExecutionType;
|
|
12
|
+
createBodyIterator(_currentContext: PLInterpreterContext, _executionContext: PLExecutionContext, _outputs: Map<string, PLFlowOutput>, _sources: Map<string, PLFlowSource>, _keywords: Map<string, boolean>): Promise<FlowIterator>;
|
|
13
|
+
createFlowExecutor(_dataContext: PLInterpreterContext, _body: FlowIteratorBodyResult, _executionContext: PLExecutionContext, _configuration: PLBlueprintConfiguration, _outputs: Map<string, PLFlowOutput>, _sources: Map<string, PLFlowSource>, _keywords: Map<string, boolean>, _lineOffset: number, _firstLineDirective: boolean): Promise<string | null>;
|
|
14
|
+
adjustInterpretingContext(_dataContext: PLInterpreterContext, _body: FlowIteratorBodyResult, _executionContext: PLExecutionContext, _outputs: Map<string, PLFlowOutput>, _sources: Map<string, PLFlowSource>, _keywords: Map<string, boolean>): FlowAdjustment | null;
|
|
15
|
+
adjustExecutingContext(dataContext: PLInterpreterContext, _body: FlowIteratorBodyResult, executionContext: PLExecutionContext, flowIdentifier: Array<string>, outputs: Map<string, PLFlowOutput>, sources: Map<string, PLFlowSource>, _keywords: Map<string, boolean>): Promise<void>;
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { PLFlowOutput } from './../../FlowOutput';
|
|
2
|
+
import { PLInterpreterContext } from './../../../InterpreterContext';
|
|
3
|
+
import { FlowIterator } from './../../FlowIterator';
|
|
4
|
+
import { PLFlow, PLFlowFormat, PLFlowExecutionType } from './../../Flow';
|
|
5
|
+
import { PLExecutionContext } from '../../../ExecutionContext';
|
|
6
|
+
import { PLFlowSource } from '../../FlowSource';
|
|
7
|
+
import { PLBlueprintConfiguration } from './../../../../blueprints/BlueprintConfiguration';
|
|
8
|
+
import { FlowIteratorBodyResult, FlowAdjustment } from './../../FlowIterator';
|
|
9
|
+
export declare class PLFlowGlobal extends PLFlow {
|
|
10
|
+
flowFormat(): Array<PLFlowFormat>;
|
|
11
|
+
executionType(): PLFlowExecutionType;
|
|
12
|
+
createBodyIterator(_currentContext: PLInterpreterContext, _executionContext: PLExecutionContext, _outputs: Map<string, PLFlowOutput>, _sources: Map<string, PLFlowSource>, _keywords: Map<string, boolean>): Promise<FlowIterator>;
|
|
13
|
+
createFlowExecutor(_dataContext: PLInterpreterContext, _body: FlowIteratorBodyResult, _executionContext: PLExecutionContext, _configuration: PLBlueprintConfiguration, _outputs: Map<string, PLFlowOutput>, _sources: Map<string, PLFlowSource>, _keywords: Map<string, boolean>, _lineOffset: number, _firstLineDirective: boolean): Promise<string | null>;
|
|
14
|
+
adjustInterpretingContext(_dataContext: PLInterpreterContext, _body: FlowIteratorBodyResult, _executionContext: PLExecutionContext, _outputs: Map<string, PLFlowOutput>, _sources: Map<string, PLFlowSource>, _keywords: Map<string, boolean>): FlowAdjustment | null;
|
|
15
|
+
adjustExecutingContext(dataContext: PLInterpreterContext, _body: FlowIteratorBodyResult, executionContext: PLExecutionContext, flowIdentifier: Array<string>, outputs: Map<string, PLFlowOutput>, sources: Map<string, PLFlowSource>, _keywords: Map<string, boolean>): Promise<void>;
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { PLFlowOutput } from '../../FlowOutput';
|
|
2
|
+
import { PLInterpreterContext } from '../../../InterpreterContext';
|
|
3
|
+
import { FlowIterator } from '../../FlowIterator';
|
|
4
|
+
import { PLFlow, PLFlowFormat, PLFlowExecutionType } from '../../Flow';
|
|
5
|
+
import { PLExecutionContext } from '../../../ExecutionContext';
|
|
6
|
+
import { PLFlowSource } from '../../FlowSource';
|
|
7
|
+
import { PLBlueprintConfiguration } from '../../../../blueprints/BlueprintConfiguration';
|
|
8
|
+
import { FlowIteratorBodyResult, FlowAdjustment } from '../../FlowIterator';
|
|
9
|
+
export declare class PLFlowLet extends PLFlow {
|
|
10
|
+
flowFormat(): Array<PLFlowFormat>;
|
|
11
|
+
executionType(): PLFlowExecutionType;
|
|
12
|
+
createBodyIterator(_currentContext: PLInterpreterContext, _executionContext: PLExecutionContext, _outputs: Map<string, PLFlowOutput>, _sources: Map<string, PLFlowSource>, _keywords: Map<string, boolean>): Promise<FlowIterator>;
|
|
13
|
+
createFlowExecutor(_dataContext: PLInterpreterContext, _body: FlowIteratorBodyResult, _executionContext: PLExecutionContext, _configuration: PLBlueprintConfiguration, _outputs: Map<string, PLFlowOutput>, _sources: Map<string, PLFlowSource>, _keywords: Map<string, boolean>, _lineOffset: number, _firstLineDirective: boolean): Promise<string | null>;
|
|
14
|
+
adjustInterpretingContext(_dataContext: PLInterpreterContext, _body: FlowIteratorBodyResult, _executionContext: PLExecutionContext, _outputs: Map<string, PLFlowOutput>, _sources: Map<string, PLFlowSource>, _keywords: Map<string, boolean>): FlowAdjustment | null;
|
|
15
|
+
adjustExecutingContext(dataContext: PLInterpreterContext, _body: FlowIteratorBodyResult, executionContext: PLExecutionContext, flowIdentifier: Array<string>, outputs: Map<string, PLFlowOutput>, sources: Map<string, PLFlowSource>, _keywords: Map<string, boolean>): Promise<void>;
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { PLFlowOutput } from './../../FlowOutput';
|
|
2
|
+
import { PLInterpreterContext } from './../../../InterpreterContext';
|
|
3
|
+
import { FlowIterator } from './../../FlowIterator';
|
|
4
|
+
import { PLFlow, PLFlowFormat, PLFlowExecutionType } from './../../Flow';
|
|
5
|
+
import { PLExecutionContext } from '../../../ExecutionContext';
|
|
6
|
+
import { PLFlowSource } from '../../FlowSource';
|
|
7
|
+
import { PLBlueprintConfiguration } from './../../../../blueprints/BlueprintConfiguration';
|
|
8
|
+
import { FlowIteratorBodyResult, FlowAdjustment } from './../../FlowIterator';
|
|
9
|
+
export declare class PLFlowSet extends PLFlow {
|
|
10
|
+
flowFormat(): Array<PLFlowFormat>;
|
|
11
|
+
executionType(): PLFlowExecutionType;
|
|
12
|
+
createBodyIterator(_currentContext: PLInterpreterContext, _executionContext: PLExecutionContext, _outputs: Map<string, PLFlowOutput>, _sources: Map<string, PLFlowSource>, _keywords: Map<string, boolean>): Promise<FlowIterator>;
|
|
13
|
+
createFlowExecutor(_dataContext: PLInterpreterContext, _body: FlowIteratorBodyResult, _executionContext: PLExecutionContext, _configuration: PLBlueprintConfiguration, _outputs: Map<string, PLFlowOutput>, _sources: Map<string, PLFlowSource>, _keywords: Map<string, boolean>, _lineOffset: number, _firstLineDirective: boolean): Promise<string | null>;
|
|
14
|
+
adjustInterpretingContext(_dataContext: PLInterpreterContext, _body: FlowIteratorBodyResult, _executionContext: PLExecutionContext, _outputs: Map<string, PLFlowOutput>, _sources: Map<string, PLFlowSource>, _keywords: Map<string, boolean>): FlowAdjustment | null;
|
|
15
|
+
adjustExecutingContext(dataContext: PLInterpreterContext, _body: FlowIteratorBodyResult, executionContext: PLExecutionContext, flowIdentifier: Array<string>, outputs: Map<string, PLFlowOutput>, sources: Map<string, PLFlowSource>, _keywords: Map<string, boolean>): Promise<void>;
|
|
16
|
+
}
|