space-data-module-sdk 0.8.4 → 0.8.6
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/README.md +117 -20
- package/bin/space-data-module.js +263 -0
- package/docs/.nojekyll +1 -0
- package/docs/AGENTS.md +34 -0
- package/docs/architecture.svg +141 -0
- package/docs/browser-wasmedge-isomorphic.md +179 -0
- package/docs/flatsql-streaming-standard.md +341 -0
- package/docs/gpu-module-abi.md +193 -0
- package/docs/index.html +125 -0
- package/docs/isomorphic-pthreads.md +188 -0
- package/docs/isomorphic-sdn-runtime-plan.md +167 -0
- package/docs/language-runtime-matrix.md +82 -0
- package/docs/manifest-structure.svg +114 -0
- package/docs/module-bundle-runtime-plan.md +19 -0
- package/docs/module-lifecycle.svg +70 -0
- package/docs/module-publication-standard.md +540 -0
- package/docs/node-red-default-node-parity.md +88 -0
- package/docs/protocol-installation.md +196 -0
- package/docs/secrets-capability.md +152 -0
- package/docs/styles.css +288 -0
- package/docs/testing-harness.md +408 -0
- package/docs/tri-runtime-parity.md +132 -0
- package/docs/wallet-callback.html +2 -0
- package/package.json +25 -6
- package/schemas/HttpRequestAbi.fbs +41 -0
- package/schemas/HttpResponseAbi.fbs +36 -0
- package/schemas/PluginManifest.fbs +2 -1
- package/src/AGENTS.md +1 -1
- package/src/app/codec.js +548 -0
- package/src/app/index.js +6 -0
- package/src/browser.js +5 -0
- package/src/bundle/constants.js +1 -0
- package/src/bundle/index.js +15 -0
- package/src/bundle/sigdomain.js +179 -0
- package/src/bundle/signing.js +767 -0
- package/src/bundle/wasm.js +3 -2
- package/src/capabilities.js +3 -0
- package/src/compat/index.js +7 -0
- package/src/compat/sdnLegacy.js +449 -0
- package/src/compiler/compileModule.js +556 -55
- package/src/compiler/flatcSupport.js +41 -27
- package/src/compiler/index.d.ts +2 -0
- package/src/compiler/index.js +18 -0
- package/src/compiler/invokeGlue.js +1212 -183
- package/src/compiler/pthreadArtifactGuard.js +910 -0
- package/src/compiler/sdnShimGenerator.js +323 -0
- package/src/compiler/wasiThreadsToolchain.js +150 -0
- package/src/compliance/index.js +11 -1
- package/src/compliance/legacyWildcardPorts.js +228 -0
- package/src/compliance/pluginCompliance.js +1000 -96
- package/src/field-stream/index.d.ts +31 -0
- package/src/field-stream/index.js +119 -0
- package/src/flow/dependencyStreamBridge.js +234 -0
- package/src/flow/flatsqlLinkShim.js +304 -0
- package/src/flow/flowCodec.js +107 -0
- package/src/flow/flowCompiler.js +2900 -0
- package/src/flow/flowRuntimeHost.js +877 -0
- package/src/flow/index.d.ts +117 -0
- package/src/flow/index.js +31 -0
- package/src/flow/isomorphicFlowHost.js +384 -0
- package/src/flow/jsFlowRuntime.js +275 -0
- package/src/flow/normalize.js +294 -0
- package/src/flow/runtime-src/flow_runtime.cpp +1699 -0
- package/src/flow/vendor/sdn-flow/MethodRegistry.js +400 -0
- package/src/flow/vendor/sdn-flow/constants.js +39 -0
- package/src/flow/vendor/sdn-flow/index.js +29 -0
- package/src/flow/vendor/sdn-flow/normalize.js +506 -0
- package/src/flow/vendor/sdn-flow/wasmCompatibility.js +189 -0
- package/src/generated/http/cpp/HttpRequestAbi_generated.h +285 -0
- package/src/generated/http/cpp/HttpResponseAbi_generated.h +192 -0
- package/src/generated/http/sdn/http/http-header.js +53 -0
- package/src/generated/http/sdn/http/http-header.ts +67 -0
- package/src/generated/http/sdn/http/http-request.js +132 -0
- package/src/generated/http/sdn/http/http-request.ts +179 -0
- package/src/generated/http/sdn/http/http-response.js +144 -0
- package/src/generated/http/sdn/http/http-response.ts +168 -0
- package/src/generated/http/sdn/http.js +11 -0
- package/src/generated/http/sdn/http.ts +4 -0
- package/src/generated/orbpro/flow/backpressure-policy.d.ts +12 -0
- package/src/generated/orbpro/flow/backpressure-policy.d.ts.map +1 -0
- package/src/generated/orbpro/flow/backpressure-policy.js +17 -0
- package/src/generated/orbpro/flow/backpressure-policy.js.map +1 -0
- package/src/generated/orbpro/flow/backpressure-policy.ts +15 -0
- package/src/generated/orbpro/flow/flow-bundle-manifest.d.ts +142 -0
- package/src/generated/orbpro/flow/flow-bundle-manifest.d.ts.map +1 -0
- package/src/generated/orbpro/flow/flow-bundle-manifest.js +304 -0
- package/src/generated/orbpro/flow/flow-bundle-manifest.js.map +1 -0
- package/src/generated/orbpro/flow/flow-bundle-manifest.ts +399 -0
- package/src/generated/orbpro/flow/flow-edge.d.ts +113 -0
- package/src/generated/orbpro/flow/flow-edge.d.ts.map +1 -0
- package/src/generated/orbpro/flow/flow-edge.js +221 -0
- package/src/generated/orbpro/flow/flow-edge.js.map +1 -0
- package/src/generated/orbpro/flow/flow-edge.ts +292 -0
- package/src/generated/orbpro/flow/flow-node.d.ts +80 -0
- package/src/generated/orbpro/flow/flow-node.d.ts.map +1 -0
- package/src/generated/orbpro/flow/flow-node.js +158 -0
- package/src/generated/orbpro/flow/flow-node.js.map +1 -0
- package/src/generated/orbpro/flow/flow-node.ts +202 -0
- package/src/generated/orbpro/flow/flow-program.d.ts +164 -0
- package/src/generated/orbpro/flow/flow-program.d.ts.map +1 -0
- package/src/generated/orbpro/flow/flow-program.js +350 -0
- package/src/generated/orbpro/flow/flow-program.js.map +1 -0
- package/src/generated/orbpro/flow/flow-program.ts +477 -0
- package/src/generated/orbpro/flow/flow-trigger.d.ts +108 -0
- package/src/generated/orbpro/flow/flow-trigger.d.ts.map +1 -0
- package/src/generated/orbpro/flow/flow-trigger.js +207 -0
- package/src/generated/orbpro/flow/flow-trigger.js.map +1 -0
- package/src/generated/orbpro/flow/flow-trigger.ts +276 -0
- package/src/generated/orbpro/flow/node-kind.d.ts +13 -0
- package/src/generated/orbpro/flow/node-kind.d.ts.map +1 -0
- package/src/generated/orbpro/flow/node-kind.js +16 -0
- package/src/generated/orbpro/flow/node-kind.js.map +1 -0
- package/src/generated/orbpro/{invoke.ts → flow/node-kind.ts} +12 -2
- package/src/generated/orbpro/flow/plugin-version-binding.d.ts +52 -0
- package/src/generated/orbpro/flow/plugin-version-binding.d.ts.map +1 -0
- package/src/generated/orbpro/flow/plugin-version-binding.js +85 -0
- package/src/generated/orbpro/flow/plugin-version-binding.js.map +1 -0
- package/src/generated/orbpro/flow/plugin-version-binding.ts +121 -0
- package/src/generated/orbpro/flow/schema-hash-binding.d.ts +70 -0
- package/src/generated/orbpro/flow/schema-hash-binding.d.ts.map +1 -0
- package/src/generated/orbpro/flow/schema-hash-binding.js +143 -0
- package/src/generated/orbpro/flow/schema-hash-binding.js.map +1 -0
- package/src/generated/orbpro/flow/schema-hash-binding.ts +189 -0
- package/src/generated/orbpro/flow/trigger-binding.d.ts +71 -0
- package/src/generated/orbpro/flow/trigger-binding.d.ts.map +1 -0
- package/src/generated/orbpro/flow/trigger-binding.js +142 -0
- package/src/generated/orbpro/flow/trigger-binding.js.map +1 -0
- package/src/generated/orbpro/flow/trigger-binding.ts +181 -0
- package/src/generated/orbpro/flow/trigger-kind.d.ts +14 -0
- package/src/generated/orbpro/flow/trigger-kind.d.ts.map +1 -0
- package/src/generated/orbpro/flow/trigger-kind.js +17 -0
- package/src/generated/orbpro/flow/trigger-kind.js.map +1 -0
- package/src/generated/orbpro/flow/trigger-kind.ts +17 -0
- package/src/generated/orbpro/flow.d.ts +21 -0
- package/src/generated/orbpro/flow.d.ts.map +1 -0
- package/src/generated/orbpro/flow.js +23 -0
- package/src/generated/orbpro/flow.js.map +1 -0
- package/src/generated/orbpro/flow.ts +24 -0
- package/src/generated/orbpro/manifest/capability-kind.d.ts +2 -1
- package/src/generated/orbpro/manifest/capability-kind.js +1 -0
- package/src/generated/orbpro/manifest/capability-kind.ts +1 -0
- package/src/generated/orbpro/plugin/stream-invoke-request.d.ts +93 -0
- package/src/generated/orbpro/plugin/stream-invoke-request.js +160 -0
- package/src/generated/orbpro/plugin/stream-invoke-request.ts +211 -0
- package/src/generated/orbpro/plugin/stream-invoke-response.d.ts +99 -0
- package/src/generated/orbpro/plugin/stream-invoke-response.js +175 -0
- package/src/generated/orbpro/plugin/stream-invoke-response.ts +226 -0
- package/src/generated/orbpro/plugin.js +8 -0
- package/src/generated/orbpro/stream.d.ts +12 -0
- package/src/generated/orbpro/stream.js +14 -0
- package/src/generated/orbpro/stream.ts +15 -0
- package/src/generated/spacedatastandards/plg/EntryFunction.d.ts +52 -0
- package/src/generated/spacedatastandards/plg/EntryFunction.d.ts.map +1 -0
- package/src/generated/spacedatastandards/plg/EntryFunction.js +106 -0
- package/src/generated/spacedatastandards/plg/EntryFunction.ts +162 -0
- package/src/generated/spacedatastandards/plg/FlatBufferTypeRef.d.ts +90 -0
- package/src/generated/spacedatastandards/plg/FlatBufferTypeRef.d.ts.map +1 -0
- package/src/generated/spacedatastandards/plg/FlatBufferTypeRef.js +189 -0
- package/src/generated/spacedatastandards/plg/FlatBufferTypeRef.ts +270 -0
- package/src/generated/spacedatastandards/plg/PLG.d.ts +492 -0
- package/src/generated/spacedatastandards/plg/PLG.d.ts.map +1 -0
- package/src/generated/spacedatastandards/plg/PLG.js +1139 -0
- package/src/generated/spacedatastandards/plg/PLG.ts +1600 -0
- package/src/generated/spacedatastandards/plg/PLGAcceptedTypeSet.d.ts +63 -0
- package/src/generated/spacedatastandards/plg/PLGAcceptedTypeSet.d.ts.map +1 -0
- package/src/generated/spacedatastandards/plg/PLGAcceptedTypeSet.js +138 -0
- package/src/generated/spacedatastandards/plg/PLGAcceptedTypeSet.ts +189 -0
- package/src/generated/spacedatastandards/plg/PLGBuildArtifact.d.ts +41 -0
- package/src/generated/spacedatastandards/plg/PLGBuildArtifact.d.ts.map +1 -0
- package/src/generated/spacedatastandards/plg/PLGBuildArtifact.js +104 -0
- package/src/generated/spacedatastandards/plg/PLGBuildArtifact.ts +151 -0
- package/src/generated/spacedatastandards/plg/PLGFlowEdge.d.ts +68 -0
- package/src/generated/spacedatastandards/plg/PLGFlowEdge.d.ts.map +1 -0
- package/src/generated/spacedatastandards/plg/PLGFlowEdge.js +124 -0
- package/src/generated/spacedatastandards/plg/PLGFlowEdge.ts +184 -0
- package/src/generated/spacedatastandards/plg/PLGFlowEdgeContract.d.ts +58 -0
- package/src/generated/spacedatastandards/plg/PLGFlowEdgeContract.d.ts.map +1 -0
- package/src/generated/spacedatastandards/plg/PLGFlowEdgeContract.js +126 -0
- package/src/generated/spacedatastandards/plg/PLGFlowEdgeContract.ts +161 -0
- package/src/generated/spacedatastandards/plg/PLGFlowNode.d.ts +82 -0
- package/src/generated/spacedatastandards/plg/PLGFlowNode.d.ts.map +1 -0
- package/src/generated/spacedatastandards/plg/PLGFlowNode.js +164 -0
- package/src/generated/spacedatastandards/plg/PLGFlowNode.ts +244 -0
- package/src/generated/spacedatastandards/plg/PLGFlowTrigger.d.ts +55 -0
- package/src/generated/spacedatastandards/plg/PLGFlowTrigger.d.ts.map +1 -0
- package/src/generated/spacedatastandards/plg/PLGFlowTrigger.js +105 -0
- package/src/generated/spacedatastandards/plg/PLGFlowTrigger.ts +162 -0
- package/src/generated/spacedatastandards/plg/PLGFlowTriggerBinding.d.ts +42 -0
- package/src/generated/spacedatastandards/plg/PLGFlowTriggerBinding.d.ts.map +1 -0
- package/src/generated/spacedatastandards/plg/PLGFlowTriggerBinding.js +83 -0
- package/src/generated/spacedatastandards/plg/PLGFlowTriggerBinding.ts +127 -0
- package/src/generated/spacedatastandards/plg/PLGHostCapability.d.ts +36 -0
- package/src/generated/spacedatastandards/plg/PLGHostCapability.d.ts.map +1 -0
- package/src/generated/spacedatastandards/plg/PLGHostCapability.js +90 -0
- package/src/generated/spacedatastandards/plg/PLGHostCapability.ts +127 -0
- package/src/generated/spacedatastandards/plg/PLGMethodManifest.d.ts +53 -0
- package/src/generated/spacedatastandards/plg/PLGMethodManifest.d.ts.map +1 -0
- package/src/generated/spacedatastandards/plg/PLGMethodManifest.js +153 -0
- package/src/generated/spacedatastandards/plg/PLGMethodManifest.ts +210 -0
- package/src/generated/spacedatastandards/plg/PLGPortManifest.d.ts +70 -0
- package/src/generated/spacedatastandards/plg/PLGPortManifest.d.ts.map +1 -0
- package/src/generated/spacedatastandards/plg/PLGPortManifest.js +149 -0
- package/src/generated/spacedatastandards/plg/PLGPortManifest.ts +212 -0
- package/src/generated/spacedatastandards/plg/PLGProtocolSpec.d.ts +73 -0
- package/src/generated/spacedatastandards/plg/PLGProtocolSpec.d.ts.map +1 -0
- package/src/generated/spacedatastandards/plg/PLGProtocolSpec.js +199 -0
- package/src/generated/spacedatastandards/plg/PLGProtocolSpec.ts +292 -0
- package/src/generated/spacedatastandards/plg/PLGTimerSpec.d.ts +40 -0
- package/src/generated/spacedatastandards/plg/PLGTimerSpec.d.ts.map +1 -0
- package/src/generated/spacedatastandards/plg/PLGTimerSpec.js +103 -0
- package/src/generated/spacedatastandards/plg/PLGTimerSpec.ts +148 -0
- package/src/generated/spacedatastandards/plg/PluginCapability.d.ts +41 -0
- package/src/generated/spacedatastandards/plg/PluginCapability.d.ts.map +1 -0
- package/src/generated/spacedatastandards/plg/PluginCapability.js +82 -0
- package/src/generated/spacedatastandards/plg/{plugin-capability.ts → PluginCapability.ts} +55 -18
- package/src/generated/spacedatastandards/plg/PluginDependency.d.ts +42 -0
- package/src/generated/spacedatastandards/plg/PluginDependency.d.ts.map +1 -0
- package/src/generated/spacedatastandards/plg/PluginDependency.js +80 -0
- package/src/generated/spacedatastandards/plg/PluginDependency.ts +124 -0
- package/src/generated/spacedatastandards/plg/TAB.d.ts +85 -0
- package/src/generated/spacedatastandards/plg/TAB.d.ts.map +1 -0
- package/src/generated/spacedatastandards/plg/TAB.js +173 -0
- package/src/generated/spacedatastandards/plg/TAB.ts +228 -0
- package/src/generated/spacedatastandards/plg/bufferMutability.d.ts +18 -0
- package/src/generated/spacedatastandards/plg/bufferMutability.d.ts.map +1 -0
- package/src/generated/spacedatastandards/plg/bufferMutability.js +20 -0
- package/src/generated/spacedatastandards/plg/bufferMutability.ts +23 -0
- package/src/generated/spacedatastandards/plg/bufferOwnership.d.ts +18 -0
- package/src/generated/spacedatastandards/plg/bufferOwnership.d.ts.map +1 -0
- package/src/generated/spacedatastandards/plg/bufferOwnership.js +20 -0
- package/src/generated/spacedatastandards/plg/bufferOwnership.ts +23 -0
- package/src/generated/spacedatastandards/plg/drainBehavior.d.ts +20 -0
- package/src/generated/spacedatastandards/plg/drainBehavior.d.ts.map +1 -0
- package/src/generated/spacedatastandards/plg/drainBehavior.js +22 -0
- package/src/generated/spacedatastandards/plg/drainBehavior.ts +25 -0
- package/src/generated/spacedatastandards/plg/flowEdgeRoutePolicy.d.ts +10 -0
- package/src/generated/spacedatastandards/plg/flowEdgeRoutePolicy.d.ts.map +1 -0
- package/src/generated/spacedatastandards/plg/flowEdgeRoutePolicy.js +12 -0
- package/src/generated/spacedatastandards/plg/flowEdgeRoutePolicy.ts +13 -0
- package/src/generated/spacedatastandards/plg/hostCapabilityKind.d.ts +51 -0
- package/src/generated/spacedatastandards/plg/hostCapabilityKind.d.ts.map +1 -0
- package/src/generated/spacedatastandards/plg/hostCapabilityKind.js +53 -0
- package/src/generated/spacedatastandards/plg/hostCapabilityKind.ts +55 -0
- package/src/generated/spacedatastandards/plg/invokeSurfaceKind.d.ts +15 -0
- package/src/generated/spacedatastandards/plg/invokeSurfaceKind.d.ts.map +1 -0
- package/src/generated/spacedatastandards/plg/invokeSurfaceKind.js +17 -0
- package/src/generated/spacedatastandards/plg/invokeSurfaceKind.ts +19 -0
- package/src/generated/spacedatastandards/plg/main.d.ts +29 -0
- package/src/generated/spacedatastandards/plg/main.d.ts.map +1 -0
- package/src/generated/spacedatastandards/plg/main.js +30 -0
- package/src/generated/spacedatastandards/plg/main.ts +32 -0
- package/src/generated/spacedatastandards/plg/payloadWireFormat.d.ts +17 -0
- package/src/generated/spacedatastandards/plg/payloadWireFormat.d.ts.map +1 -0
- package/src/generated/spacedatastandards/plg/payloadWireFormat.js +19 -0
- package/src/generated/spacedatastandards/plg/payloadWireFormat.ts +21 -0
- package/src/generated/spacedatastandards/plg/pluginCategory.d.ts +82 -0
- package/src/generated/spacedatastandards/plg/pluginCategory.d.ts.map +1 -0
- package/src/generated/spacedatastandards/plg/pluginCategory.js +84 -0
- package/src/generated/spacedatastandards/plg/pluginCategory.ts +103 -0
- package/src/generated/spacedatastandards/plg/publicationState.d.ts +18 -0
- package/src/generated/spacedatastandards/plg/publicationState.d.ts.map +1 -0
- package/src/generated/spacedatastandards/plg/publicationState.js +20 -0
- package/src/generated/spacedatastandards/plg/purchaseTier.d.ts +18 -0
- package/src/generated/spacedatastandards/plg/purchaseTier.d.ts.map +1 -0
- package/src/generated/spacedatastandards/plg/purchaseTier.js +20 -0
- package/src/host/AGENTS.md +2 -2
- package/src/host/abi.js +53 -66
- package/src/host/browserHost.js +355 -8
- package/src/host/cpp/keyslotClient.hpp +231 -0
- package/src/host/cpp/secretsClient.hpp +583 -0
- package/src/host/hostcallWire.js +183 -0
- package/src/host/index.js +2 -0
- package/src/host/isomorphicLoader.js +44 -7
- package/src/host/nodeHost.js +227 -8
- package/src/host/sabHostcallChannel.js +206 -0
- package/src/host/timerDriver.js +203 -0
- package/src/host/wasiShim.js +41 -1
- package/src/host/wasiThreadBrowserWorker.mjs +48 -0
- package/src/host/wasiThreadHost.js +393 -0
- package/src/host/wasiThreadWorker.mjs +32 -0
- package/src/host/wasiThreadWorkerRuntime.js +93 -0
- package/src/http/index.js +339 -0
- package/src/index.d.ts +725 -11
- package/src/index.js +4 -0
- package/src/invoke/codec.js +1202 -128
- package/src/invoke/index.js +5 -1
- package/src/licensing/index.d.ts +2 -0
- package/src/licensing/index.js +2 -0
- package/src/licensing/records.js +287 -8
- package/src/manifest/codec.js +62 -14
- package/src/manifest/index.js +2 -0
- package/src/manifest/legacyToPlg.js +164 -25
- package/src/manifest/normalize.js +1 -0
- package/src/manifest/plgCodec.js +1303 -62
- package/src/manifest/typeRefs.js +162 -24
- package/src/runtime/compiledRuntimeAbi.js +47 -0
- package/src/runtime/compiledRuntimeAbi.json +33 -0
- package/src/runtime/index.d.ts +32 -0
- package/src/runtime/index.js +1 -0
- package/src/runtime-host/index.js +3 -0
- package/src/runtime-host/methodRegistry.js +55 -0
- package/src/standards/index.js +200 -56
- package/src/standards/sharedCatalog.js +16 -0
- package/src/testing/browserModuleHarness.js +604 -31
- package/src/testing/docker/wasmedge-parity.Dockerfile +39 -0
- package/src/testing/index.d.ts +151 -0
- package/src/testing/index.js +21 -0
- package/src/testing/native/wasmedge_emscripten_pthread_runner.c +25 -1
- package/src/testing/parityBrowserRunner.js +138 -0
- package/src/testing/parityHarness.js +616 -0
- package/src/testing/parityLanes.js +537 -0
- package/src/testing/processInvoke.js +29 -21
- package/src/testing/streamInvokeCodec.js +10 -175
- package/src/testing/wasmedgePin.json +6 -0
- package/src/testing/workerModuleHarness.js +242 -0
- package/src/testing/workerModuleHarnessWorker.js +176 -0
- package/src/transport/index.js +3 -0
- package/src/transport/pki.js +352 -14
- package/src/transport/records.js +16 -7
- package/src/utils/ecdsaDer.js +106 -0
- package/src/utils/wasmCrypto.js +0 -43
- package/templates/gpu-module/README.md +48 -0
- package/templates/gpu-module/include/space_data_gpu_abi.h +122 -0
- package/templates/gpu-module/manifest.json +84 -0
- package/schemas/PluginInvokeRequest.fbs +0 -18
- package/schemas/PluginInvokeResponse.fbs +0 -30
- package/schemas/spacedatastandards/PLG.fbs +0 -191
- package/src/generated/orbpro/invoke/plugin-invoke-request.d.ts +0 -51
- package/src/generated/orbpro/invoke/plugin-invoke-request.d.ts.map +0 -1
- package/src/generated/orbpro/invoke/plugin-invoke-request.js +0 -131
- package/src/generated/orbpro/invoke/plugin-invoke-request.js.map +0 -1
- package/src/generated/orbpro/invoke/plugin-invoke-request.ts +0 -173
- package/src/generated/orbpro/invoke/plugin-invoke-response.d.ts +0 -76
- package/src/generated/orbpro/invoke/plugin-invoke-response.d.ts.map +0 -1
- package/src/generated/orbpro/invoke/plugin-invoke-response.js +0 -184
- package/src/generated/orbpro/invoke/plugin-invoke-response.js.map +0 -1
- package/src/generated/orbpro/invoke/plugin-invoke-response.ts +0 -243
- package/src/generated/orbpro/invoke.d.ts +0 -3
- package/src/generated/orbpro/invoke.js +0 -5
- package/src/generated/spacedatastandards/plg/entry-function.js +0 -86
- package/src/generated/spacedatastandards/plg/entry-function.ts +0 -119
- package/src/generated/spacedatastandards/plg/index.js +0 -16
- package/src/generated/spacedatastandards/plg/index.ts +0 -11
- package/src/generated/spacedatastandards/plg/plg.js +0 -657
- package/src/generated/spacedatastandards/plg/plg.ts +0 -924
- package/src/generated/spacedatastandards/plg/plugin-capability.js +0 -66
- package/src/generated/spacedatastandards/plg/plugin-category.js +0 -15
- package/src/generated/spacedatastandards/plg/plugin-category.ts +0 -53
- package/src/generated/spacedatastandards/plg/plugin-dependency.js +0 -63
- package/src/generated/spacedatastandards/plg/plugin-dependency.ts +0 -86
- package/src/generated/spacedatastandards/plg/publication-state.js +0 -9
- package/src/generated/spacedatastandards/plg/purchase-tier.js +0 -9
- /package/src/generated/spacedatastandards/plg/{publication-state.ts → publicationState.ts} +0 -0
- /package/src/generated/spacedatastandards/plg/{purchase-tier.ts → purchaseTier.ts} +0 -0
|
@@ -0,0 +1,492 @@
|
|
|
1
|
+
import * as flatbuffers from 'flatbuffers';
|
|
2
|
+
import { EntryFunction, EntryFunctionT } from './EntryFunction.js';
|
|
3
|
+
import { FlatBufferTypeRef, FlatBufferTypeRefT } from './FlatBufferTypeRef.js';
|
|
4
|
+
import { PLGBuildArtifact, PLGBuildArtifactT } from './PLGBuildArtifact.js';
|
|
5
|
+
import { PLGFlowEdge, PLGFlowEdgeT } from './PLGFlowEdge.js';
|
|
6
|
+
import { PLGFlowNode, PLGFlowNodeT } from './PLGFlowNode.js';
|
|
7
|
+
import { PLGFlowTrigger, PLGFlowTriggerT } from './PLGFlowTrigger.js';
|
|
8
|
+
import { PLGFlowTriggerBinding, PLGFlowTriggerBindingT } from './PLGFlowTriggerBinding.js';
|
|
9
|
+
import { PLGHostCapability, PLGHostCapabilityT } from './PLGHostCapability.js';
|
|
10
|
+
import { PLGMethodManifest, PLGMethodManifestT } from './PLGMethodManifest.js';
|
|
11
|
+
import { PLGProtocolSpec, PLGProtocolSpecT } from './PLGProtocolSpec.js';
|
|
12
|
+
import { PLGTimerSpec, PLGTimerSpecT } from './PLGTimerSpec.js';
|
|
13
|
+
import { PluginCapability, PluginCapabilityT } from './PluginCapability.js';
|
|
14
|
+
import { PluginDependency, PluginDependencyT } from './PluginDependency.js';
|
|
15
|
+
import { invokeSurfaceKind } from './invokeSurfaceKind.js';
|
|
16
|
+
import { pluginCategory } from './pluginCategory.js';
|
|
17
|
+
import { publicationState } from './publicationState.js';
|
|
18
|
+
import { purchaseTier } from './purchaseTier.js';
|
|
19
|
+
/**
|
|
20
|
+
* Plugin Manifest - canonical signed storefront and WASM distribution record
|
|
21
|
+
*/
|
|
22
|
+
export declare class PLG implements flatbuffers.IUnpackableObject<PLGT> {
|
|
23
|
+
bb: flatbuffers.ByteBuffer | null;
|
|
24
|
+
bb_pos: number;
|
|
25
|
+
__init(i: number, bb: flatbuffers.ByteBuffer): PLG;
|
|
26
|
+
static getRootAsPLG(bb: flatbuffers.ByteBuffer, obj?: PLG): PLG;
|
|
27
|
+
static getSizePrefixedRootAsPLG(bb: flatbuffers.ByteBuffer, obj?: PLG): PLG;
|
|
28
|
+
static bufferHasIdentifier(bb: flatbuffers.ByteBuffer): boolean;
|
|
29
|
+
/**
|
|
30
|
+
* Unique identifier for the plugin
|
|
31
|
+
*/
|
|
32
|
+
PLUGIN_ID(): string;
|
|
33
|
+
PLUGIN_ID(optionalEncoding: flatbuffers.Encoding): string | Uint8Array;
|
|
34
|
+
/**
|
|
35
|
+
* Human-readable plugin name
|
|
36
|
+
*/
|
|
37
|
+
NAME(): string;
|
|
38
|
+
NAME(optionalEncoding: flatbuffers.Encoding): string | Uint8Array;
|
|
39
|
+
/**
|
|
40
|
+
* Plugin version (semver format)
|
|
41
|
+
*/
|
|
42
|
+
VERSION(): string;
|
|
43
|
+
VERSION(optionalEncoding: flatbuffers.Encoding): string | Uint8Array;
|
|
44
|
+
/**
|
|
45
|
+
* Detailed description of plugin functionality
|
|
46
|
+
*/
|
|
47
|
+
DESCRIPTION(): string | null;
|
|
48
|
+
DESCRIPTION(optionalEncoding: flatbuffers.Encoding): string | Uint8Array | null;
|
|
49
|
+
/**
|
|
50
|
+
* Short marketing summary shown in storefront listings
|
|
51
|
+
*/
|
|
52
|
+
TAGLINE(): string | null;
|
|
53
|
+
TAGLINE(optionalEncoding: flatbuffers.Encoding): string | Uint8Array | null;
|
|
54
|
+
/**
|
|
55
|
+
* Type/category of the plugin
|
|
56
|
+
*/
|
|
57
|
+
PLUGIN_TYPE(): pluginCategory;
|
|
58
|
+
/**
|
|
59
|
+
* Human-readable publisher or organization name
|
|
60
|
+
*/
|
|
61
|
+
PUBLISHER_NAME(): string | null;
|
|
62
|
+
PUBLISHER_NAME(optionalEncoding: flatbuffers.Encoding): string | Uint8Array | null;
|
|
63
|
+
/**
|
|
64
|
+
* Publisher handle or username
|
|
65
|
+
*/
|
|
66
|
+
PUBLISHER_HANDLE(): string | null;
|
|
67
|
+
PUBLISHER_HANDLE(optionalEncoding: flatbuffers.Encoding): string | Uint8Array | null;
|
|
68
|
+
/**
|
|
69
|
+
* Canonical publisher website
|
|
70
|
+
*/
|
|
71
|
+
PUBLISHER_URL(): string | null;
|
|
72
|
+
PUBLISHER_URL(optionalEncoding: flatbuffers.Encoding): string | Uint8Array | null;
|
|
73
|
+
/**
|
|
74
|
+
* Support or helpdesk URL for this plugin
|
|
75
|
+
*/
|
|
76
|
+
SUPPORT_URL(): string | null;
|
|
77
|
+
SUPPORT_URL(optionalEncoding: flatbuffers.Encoding): string | Uint8Array | null;
|
|
78
|
+
/**
|
|
79
|
+
* Search and categorization tags for discovery
|
|
80
|
+
*/
|
|
81
|
+
TAGS(index: number): string;
|
|
82
|
+
TAGS(index: number, optionalEncoding: flatbuffers.Encoding): string | Uint8Array;
|
|
83
|
+
tagsLength(): number;
|
|
84
|
+
/**
|
|
85
|
+
* Short feature bullets highlighted in storefront listings
|
|
86
|
+
*/
|
|
87
|
+
FEATURES(index: number): string;
|
|
88
|
+
FEATURES(index: number, optionalEncoding: flatbuffers.Encoding): string | Uint8Array;
|
|
89
|
+
featuresLength(): number;
|
|
90
|
+
/**
|
|
91
|
+
* Screenshot URLs showing the plugin in use
|
|
92
|
+
*/
|
|
93
|
+
SCREENSHOT_URLS(index: number): string;
|
|
94
|
+
SCREENSHOT_URLS(index: number, optionalEncoding: flatbuffers.Encoding): string | Uint8Array;
|
|
95
|
+
screenshotUrlsLength(): number;
|
|
96
|
+
/**
|
|
97
|
+
* Optional hero/banner image URL for the listing
|
|
98
|
+
*/
|
|
99
|
+
BANNER_URL(): string | null;
|
|
100
|
+
BANNER_URL(optionalEncoding: flatbuffers.Encoding): string | Uint8Array | null;
|
|
101
|
+
/**
|
|
102
|
+
* ABI version for compatibility checking
|
|
103
|
+
*/
|
|
104
|
+
ABI_VERSION(): number;
|
|
105
|
+
/**
|
|
106
|
+
* SHA256 hash of the decrypted WASM binary
|
|
107
|
+
*/
|
|
108
|
+
WASM_HASH(index: number): number | null;
|
|
109
|
+
wasmHashLength(): number;
|
|
110
|
+
wasmHashArray(): Uint8Array | null;
|
|
111
|
+
/**
|
|
112
|
+
* Size of decrypted WASM binary in bytes
|
|
113
|
+
*/
|
|
114
|
+
WASM_SIZE(): bigint;
|
|
115
|
+
/**
|
|
116
|
+
* IPFS CID of the encrypted WASM binary
|
|
117
|
+
*/
|
|
118
|
+
WASM_CID(): string | null;
|
|
119
|
+
WASM_CID(optionalEncoding: flatbuffers.Encoding): string | Uint8Array | null;
|
|
120
|
+
/**
|
|
121
|
+
* SHA256 hash of the encrypted delivery artifact bytes
|
|
122
|
+
*/
|
|
123
|
+
ENCRYPTED_WASM_HASH(index: number): number | null;
|
|
124
|
+
encryptedWasmHashLength(): number;
|
|
125
|
+
encryptedWasmHashArray(): Uint8Array | null;
|
|
126
|
+
/**
|
|
127
|
+
* Size of the encrypted delivery artifact in bytes
|
|
128
|
+
*/
|
|
129
|
+
ENCRYPTED_WASM_SIZE(): bigint;
|
|
130
|
+
/**
|
|
131
|
+
* Entry point functions exported by the plugin
|
|
132
|
+
*/
|
|
133
|
+
ENTRY_FUNCTIONS(index: number, obj?: EntryFunction): EntryFunction | null;
|
|
134
|
+
entryFunctionsLength(): number;
|
|
135
|
+
/**
|
|
136
|
+
* FlatBuffer schemas required by this plugin
|
|
137
|
+
*/
|
|
138
|
+
REQUIRED_SCHEMAS(index: number): string;
|
|
139
|
+
REQUIRED_SCHEMAS(index: number, optionalEncoding: flatbuffers.Encoding): string | Uint8Array;
|
|
140
|
+
requiredSchemasLength(): number;
|
|
141
|
+
/**
|
|
142
|
+
* Other plugins this depends on
|
|
143
|
+
*/
|
|
144
|
+
DEPENDENCIES(index: number, obj?: PluginDependency): PluginDependency | null;
|
|
145
|
+
dependenciesLength(): number;
|
|
146
|
+
/**
|
|
147
|
+
* Capabilities provided by this plugin
|
|
148
|
+
*/
|
|
149
|
+
CAPABILITIES(index: number, obj?: PluginCapability): PluginCapability | null;
|
|
150
|
+
capabilitiesLength(): number;
|
|
151
|
+
/**
|
|
152
|
+
* Peer ID of the plugin provider
|
|
153
|
+
*/
|
|
154
|
+
PROVIDER_PEER_ID(): string | null;
|
|
155
|
+
PROVIDER_PEER_ID(optionalEncoding: flatbuffers.Encoding): string | Uint8Array | null;
|
|
156
|
+
/**
|
|
157
|
+
* IPFS CID of provider's EPM (Entity Profile Message)
|
|
158
|
+
*/
|
|
159
|
+
PROVIDER_EPM_CID(): string | null;
|
|
160
|
+
PROVIDER_EPM_CID(optionalEncoding: flatbuffers.Encoding): string | Uint8Array | null;
|
|
161
|
+
/**
|
|
162
|
+
* Whether the WASM binary is encrypted
|
|
163
|
+
*/
|
|
164
|
+
ENCRYPTED(): boolean;
|
|
165
|
+
/**
|
|
166
|
+
* Canonical required scope for grant issuance
|
|
167
|
+
*/
|
|
168
|
+
REQUIRED_SCOPE(): string | null;
|
|
169
|
+
REQUIRED_SCOPE(optionalEncoding: flatbuffers.Encoding): string | Uint8Array | null;
|
|
170
|
+
/**
|
|
171
|
+
* Provider-local identifier for the module content key
|
|
172
|
+
*/
|
|
173
|
+
KEY_ID(): string | null;
|
|
174
|
+
KEY_ID(optionalEncoding: flatbuffers.Encoding): string | Uint8Array | null;
|
|
175
|
+
/**
|
|
176
|
+
* Maximum grant timeout allowed for this module publication
|
|
177
|
+
*/
|
|
178
|
+
MAX_GRANT_TIMEOUT_MS(): bigint;
|
|
179
|
+
/**
|
|
180
|
+
* Minimum permissions required to run
|
|
181
|
+
*/
|
|
182
|
+
MIN_PERMISSIONS(index: number): string;
|
|
183
|
+
MIN_PERMISSIONS(index: number, optionalEncoding: flatbuffers.Encoding): string | Uint8Array;
|
|
184
|
+
minPermissionsLength(): number;
|
|
185
|
+
/**
|
|
186
|
+
* Unix timestamp when plugin was created
|
|
187
|
+
*/
|
|
188
|
+
CREATED_AT(): bigint;
|
|
189
|
+
/**
|
|
190
|
+
* Unix timestamp when plugin was last updated
|
|
191
|
+
*/
|
|
192
|
+
UPDATED_AT(): bigint;
|
|
193
|
+
/**
|
|
194
|
+
* URL to plugin documentation
|
|
195
|
+
*/
|
|
196
|
+
DOCUMENTATION_URL(): string | null;
|
|
197
|
+
DOCUMENTATION_URL(optionalEncoding: flatbuffers.Encoding): string | Uint8Array | null;
|
|
198
|
+
/**
|
|
199
|
+
* URL to plugin changelog or release notes
|
|
200
|
+
*/
|
|
201
|
+
CHANGELOG_URL(): string | null;
|
|
202
|
+
CHANGELOG_URL(optionalEncoding: flatbuffers.Encoding): string | Uint8Array | null;
|
|
203
|
+
/**
|
|
204
|
+
* URL to plugin icon/logo
|
|
205
|
+
*/
|
|
206
|
+
ICON_URL(): string | null;
|
|
207
|
+
ICON_URL(optionalEncoding: flatbuffers.Encoding): string | Uint8Array | null;
|
|
208
|
+
/**
|
|
209
|
+
* License identifier (SPDX format)
|
|
210
|
+
*/
|
|
211
|
+
LICENSE(): string | null;
|
|
212
|
+
LICENSE(optionalEncoding: flatbuffers.Encoding): string | Uint8Array | null;
|
|
213
|
+
/**
|
|
214
|
+
* Commercial model used for storefront purchase flows
|
|
215
|
+
*/
|
|
216
|
+
PAYMENT_MODEL(): purchaseTier;
|
|
217
|
+
/**
|
|
218
|
+
* Price in USD cents for one-time purchase or subscription period
|
|
219
|
+
*/
|
|
220
|
+
PRICE_USD_CENTS(): number;
|
|
221
|
+
/**
|
|
222
|
+
* Subscription billing period length in days
|
|
223
|
+
*/
|
|
224
|
+
SUBSCRIPTION_PERIOD_DAYS(): number;
|
|
225
|
+
/**
|
|
226
|
+
* Accepted payment methods, e.g. "stripe", "sol", "usdc"
|
|
227
|
+
*/
|
|
228
|
+
ACCEPTED_PAYMENT_METHODS(index: number): string;
|
|
229
|
+
ACCEPTED_PAYMENT_METHODS(index: number, optionalEncoding: flatbuffers.Encoding): string | Uint8Array;
|
|
230
|
+
acceptedPaymentMethodsLength(): number;
|
|
231
|
+
/**
|
|
232
|
+
* Storefront publication state for this manifest version
|
|
233
|
+
*/
|
|
234
|
+
LISTING_STATUS(): publicationState;
|
|
235
|
+
/**
|
|
236
|
+
* Ed25519 signature from provider over manifest
|
|
237
|
+
*/
|
|
238
|
+
SIGNATURE(index: number): number | null;
|
|
239
|
+
signatureLength(): number;
|
|
240
|
+
signatureArray(): Uint8Array | null;
|
|
241
|
+
/**
|
|
242
|
+
* Canonical invoke surfaces this artifact exposes. A single plugin
|
|
243
|
+
* MAY list both DIRECT and COMMAND when it supports both.
|
|
244
|
+
*/
|
|
245
|
+
INVOKE_SURFACES(index: number): invokeSurfaceKind | null;
|
|
246
|
+
invokeSurfacesLength(): number;
|
|
247
|
+
invokeSurfacesArray(): Uint8Array | null;
|
|
248
|
+
/**
|
|
249
|
+
* Rich per-method invoke manifests (port shape, drain semantics,
|
|
250
|
+
* accepted wire formats). ENTRY_FUNCTIONS retains the slim
|
|
251
|
+
* name+input_schemas+output_schema summary; METHODS carries the full
|
|
252
|
+
* invoke-surface detail including aligned-binary advertisement.
|
|
253
|
+
*/
|
|
254
|
+
METHODS(index: number, obj?: PLGMethodManifest): PLGMethodManifest | null;
|
|
255
|
+
methodsLength(): number;
|
|
256
|
+
/**
|
|
257
|
+
* Enum-typed host capability dependencies (richer than CAPABILITIES,
|
|
258
|
+
* which is string-tagged metadata).
|
|
259
|
+
*/
|
|
260
|
+
HOST_CAPABILITIES(index: number, obj?: PLGHostCapability): PLGHostCapability | null;
|
|
261
|
+
hostCapabilitiesLength(): number;
|
|
262
|
+
/**
|
|
263
|
+
* Timer declarations for scheduled invocations.
|
|
264
|
+
*/
|
|
265
|
+
TIMERS(index: number, obj?: PLGTimerSpec): PLGTimerSpec | null;
|
|
266
|
+
timersLength(): number;
|
|
267
|
+
/**
|
|
268
|
+
* Protocol handler declarations.
|
|
269
|
+
*/
|
|
270
|
+
PROTOCOLS(index: number, obj?: PLGProtocolSpec): PLGProtocolSpec | null;
|
|
271
|
+
protocolsLength(): number;
|
|
272
|
+
/**
|
|
273
|
+
* FlatBuffer schemas this plugin depends on at the invoke surface.
|
|
274
|
+
*/
|
|
275
|
+
SCHEMAS_USED(index: number, obj?: FlatBufferTypeRef): FlatBufferTypeRef | null;
|
|
276
|
+
schemasUsedLength(): number;
|
|
277
|
+
/**
|
|
278
|
+
* Build artifacts emitted by the toolchain (WASM, bindings, etc.).
|
|
279
|
+
*/
|
|
280
|
+
BUILD_ARTIFACTS(index: number, obj?: PLGBuildArtifact): PLGBuildArtifact | null;
|
|
281
|
+
buildArtifactsLength(): number;
|
|
282
|
+
/**
|
|
283
|
+
* Opaque runtime-target tags (e.g. "wasmtime", "wasmedge", "browser").
|
|
284
|
+
*/
|
|
285
|
+
RUNTIME_TARGETS(index: number): string;
|
|
286
|
+
RUNTIME_TARGETS(index: number, optionalEncoding: flatbuffers.Encoding): string | Uint8Array;
|
|
287
|
+
runtimeTargetsLength(): number;
|
|
288
|
+
/**
|
|
289
|
+
* Allowed requester xpub identities (BIP-32 account xpubs) for module grants:
|
|
290
|
+
* a requester whose verified EPM binds an xpub in this list is granted (PKI
|
|
291
|
+
* identity authorization). Empty list = no xpub allowlist gate.
|
|
292
|
+
*/
|
|
293
|
+
ALLOWED_XPUBS(index: number): string;
|
|
294
|
+
ALLOWED_XPUBS(index: number, optionalEncoding: flatbuffers.Encoding): string | Uint8Array;
|
|
295
|
+
allowedXpubsLength(): number;
|
|
296
|
+
/**
|
|
297
|
+
* Composition graph (a degenerate flow is a module): the nodes this flow
|
|
298
|
+
* invokes. Empty for a leaf module; populated for a composed flow. The flow
|
|
299
|
+
* definition is this PLG FlatBuffer, not a bespoke JSON graph.
|
|
300
|
+
*/
|
|
301
|
+
FLOW_NODES(index: number, obj?: PLGFlowNode): PLGFlowNode | null;
|
|
302
|
+
flowNodesLength(): number;
|
|
303
|
+
/**
|
|
304
|
+
* Composition-graph edges wiring node output ports to input ports.
|
|
305
|
+
*/
|
|
306
|
+
FLOW_EDGES(index: number, obj?: PLGFlowEdge): PLGFlowEdge | null;
|
|
307
|
+
flowEdgesLength(): number;
|
|
308
|
+
/**
|
|
309
|
+
* Flow triggers (timer/http) that start a drain.
|
|
310
|
+
*/
|
|
311
|
+
FLOW_TRIGGERS(index: number, obj?: PLGFlowTrigger): PLGFlowTrigger | null;
|
|
312
|
+
flowTriggersLength(): number;
|
|
313
|
+
/**
|
|
314
|
+
* Bindings from triggers to the node + input port they deliver to.
|
|
315
|
+
*/
|
|
316
|
+
FLOW_TRIGGER_BINDINGS(index: number, obj?: PLGFlowTriggerBinding): PLGFlowTriggerBinding | null;
|
|
317
|
+
flowTriggerBindingsLength(): number;
|
|
318
|
+
static startPLG(builder: flatbuffers.Builder): void;
|
|
319
|
+
static addPluginId(builder: flatbuffers.Builder, PLUGIN_IDOffset: flatbuffers.Offset): void;
|
|
320
|
+
static addName(builder: flatbuffers.Builder, NAMEOffset: flatbuffers.Offset): void;
|
|
321
|
+
static addVersion(builder: flatbuffers.Builder, VERSIONOffset: flatbuffers.Offset): void;
|
|
322
|
+
static addDescription(builder: flatbuffers.Builder, DESCRIPTIONOffset: flatbuffers.Offset): void;
|
|
323
|
+
static addTagline(builder: flatbuffers.Builder, TAGLINEOffset: flatbuffers.Offset): void;
|
|
324
|
+
static addPluginType(builder: flatbuffers.Builder, PLUGIN_TYPE: pluginCategory): void;
|
|
325
|
+
static addPublisherName(builder: flatbuffers.Builder, PUBLISHER_NAMEOffset: flatbuffers.Offset): void;
|
|
326
|
+
static addPublisherHandle(builder: flatbuffers.Builder, PUBLISHER_HANDLEOffset: flatbuffers.Offset): void;
|
|
327
|
+
static addPublisherUrl(builder: flatbuffers.Builder, PUBLISHER_URLOffset: flatbuffers.Offset): void;
|
|
328
|
+
static addSupportUrl(builder: flatbuffers.Builder, SUPPORT_URLOffset: flatbuffers.Offset): void;
|
|
329
|
+
static addTags(builder: flatbuffers.Builder, TAGSOffset: flatbuffers.Offset): void;
|
|
330
|
+
static createTagsVector(builder: flatbuffers.Builder, data: flatbuffers.Offset[]): flatbuffers.Offset;
|
|
331
|
+
static startTagsVector(builder: flatbuffers.Builder, numElems: number): void;
|
|
332
|
+
static addFeatures(builder: flatbuffers.Builder, FEATURESOffset: flatbuffers.Offset): void;
|
|
333
|
+
static createFeaturesVector(builder: flatbuffers.Builder, data: flatbuffers.Offset[]): flatbuffers.Offset;
|
|
334
|
+
static startFeaturesVector(builder: flatbuffers.Builder, numElems: number): void;
|
|
335
|
+
static addScreenshotUrls(builder: flatbuffers.Builder, SCREENSHOT_URLSOffset: flatbuffers.Offset): void;
|
|
336
|
+
static createScreenshotUrlsVector(builder: flatbuffers.Builder, data: flatbuffers.Offset[]): flatbuffers.Offset;
|
|
337
|
+
static startScreenshotUrlsVector(builder: flatbuffers.Builder, numElems: number): void;
|
|
338
|
+
static addBannerUrl(builder: flatbuffers.Builder, BANNER_URLOffset: flatbuffers.Offset): void;
|
|
339
|
+
static addAbiVersion(builder: flatbuffers.Builder, ABI_VERSION: number): void;
|
|
340
|
+
static addWasmHash(builder: flatbuffers.Builder, WASM_HASHOffset: flatbuffers.Offset): void;
|
|
341
|
+
static createWasmHashVector(builder: flatbuffers.Builder, data: number[] | Uint8Array): flatbuffers.Offset;
|
|
342
|
+
static startWasmHashVector(builder: flatbuffers.Builder, numElems: number): void;
|
|
343
|
+
static addWasmSize(builder: flatbuffers.Builder, WASM_SIZE: bigint): void;
|
|
344
|
+
static addWasmCid(builder: flatbuffers.Builder, WASM_CIDOffset: flatbuffers.Offset): void;
|
|
345
|
+
static addEncryptedWasmHash(builder: flatbuffers.Builder, ENCRYPTED_WASM_HASHOffset: flatbuffers.Offset): void;
|
|
346
|
+
static createEncryptedWasmHashVector(builder: flatbuffers.Builder, data: number[] | Uint8Array): flatbuffers.Offset;
|
|
347
|
+
static startEncryptedWasmHashVector(builder: flatbuffers.Builder, numElems: number): void;
|
|
348
|
+
static addEncryptedWasmSize(builder: flatbuffers.Builder, ENCRYPTED_WASM_SIZE: bigint): void;
|
|
349
|
+
static addEntryFunctions(builder: flatbuffers.Builder, ENTRY_FUNCTIONSOffset: flatbuffers.Offset): void;
|
|
350
|
+
static createEntryFunctionsVector(builder: flatbuffers.Builder, data: flatbuffers.Offset[]): flatbuffers.Offset;
|
|
351
|
+
static startEntryFunctionsVector(builder: flatbuffers.Builder, numElems: number): void;
|
|
352
|
+
static addRequiredSchemas(builder: flatbuffers.Builder, REQUIRED_SCHEMASOffset: flatbuffers.Offset): void;
|
|
353
|
+
static createRequiredSchemasVector(builder: flatbuffers.Builder, data: flatbuffers.Offset[]): flatbuffers.Offset;
|
|
354
|
+
static startRequiredSchemasVector(builder: flatbuffers.Builder, numElems: number): void;
|
|
355
|
+
static addDependencies(builder: flatbuffers.Builder, DEPENDENCIESOffset: flatbuffers.Offset): void;
|
|
356
|
+
static createDependenciesVector(builder: flatbuffers.Builder, data: flatbuffers.Offset[]): flatbuffers.Offset;
|
|
357
|
+
static startDependenciesVector(builder: flatbuffers.Builder, numElems: number): void;
|
|
358
|
+
static addCapabilities(builder: flatbuffers.Builder, CAPABILITIESOffset: flatbuffers.Offset): void;
|
|
359
|
+
static createCapabilitiesVector(builder: flatbuffers.Builder, data: flatbuffers.Offset[]): flatbuffers.Offset;
|
|
360
|
+
static startCapabilitiesVector(builder: flatbuffers.Builder, numElems: number): void;
|
|
361
|
+
static addProviderPeerId(builder: flatbuffers.Builder, PROVIDER_PEER_IDOffset: flatbuffers.Offset): void;
|
|
362
|
+
static addProviderEpmCid(builder: flatbuffers.Builder, PROVIDER_EPM_CIDOffset: flatbuffers.Offset): void;
|
|
363
|
+
static addEncrypted(builder: flatbuffers.Builder, ENCRYPTED: boolean): void;
|
|
364
|
+
static addRequiredScope(builder: flatbuffers.Builder, REQUIRED_SCOPEOffset: flatbuffers.Offset): void;
|
|
365
|
+
static addKeyId(builder: flatbuffers.Builder, KEY_IDOffset: flatbuffers.Offset): void;
|
|
366
|
+
static addMaxGrantTimeoutMs(builder: flatbuffers.Builder, MAX_GRANT_TIMEOUT_MS: bigint): void;
|
|
367
|
+
static addMinPermissions(builder: flatbuffers.Builder, MIN_PERMISSIONSOffset: flatbuffers.Offset): void;
|
|
368
|
+
static createMinPermissionsVector(builder: flatbuffers.Builder, data: flatbuffers.Offset[]): flatbuffers.Offset;
|
|
369
|
+
static startMinPermissionsVector(builder: flatbuffers.Builder, numElems: number): void;
|
|
370
|
+
static addCreatedAt(builder: flatbuffers.Builder, CREATED_AT: bigint): void;
|
|
371
|
+
static addUpdatedAt(builder: flatbuffers.Builder, UPDATED_AT: bigint): void;
|
|
372
|
+
static addDocumentationUrl(builder: flatbuffers.Builder, DOCUMENTATION_URLOffset: flatbuffers.Offset): void;
|
|
373
|
+
static addChangelogUrl(builder: flatbuffers.Builder, CHANGELOG_URLOffset: flatbuffers.Offset): void;
|
|
374
|
+
static addIconUrl(builder: flatbuffers.Builder, ICON_URLOffset: flatbuffers.Offset): void;
|
|
375
|
+
static addLicense(builder: flatbuffers.Builder, LICENSEOffset: flatbuffers.Offset): void;
|
|
376
|
+
static addPaymentModel(builder: flatbuffers.Builder, PAYMENT_MODEL: purchaseTier): void;
|
|
377
|
+
static addPriceUsdCents(builder: flatbuffers.Builder, PRICE_USD_CENTS: number): void;
|
|
378
|
+
static addSubscriptionPeriodDays(builder: flatbuffers.Builder, SUBSCRIPTION_PERIOD_DAYS: number): void;
|
|
379
|
+
static addAcceptedPaymentMethods(builder: flatbuffers.Builder, ACCEPTED_PAYMENT_METHODSOffset: flatbuffers.Offset): void;
|
|
380
|
+
static createAcceptedPaymentMethodsVector(builder: flatbuffers.Builder, data: flatbuffers.Offset[]): flatbuffers.Offset;
|
|
381
|
+
static startAcceptedPaymentMethodsVector(builder: flatbuffers.Builder, numElems: number): void;
|
|
382
|
+
static addListingStatus(builder: flatbuffers.Builder, LISTING_STATUS: publicationState): void;
|
|
383
|
+
static addSignature(builder: flatbuffers.Builder, SIGNATUREOffset: flatbuffers.Offset): void;
|
|
384
|
+
static createSignatureVector(builder: flatbuffers.Builder, data: number[] | Uint8Array): flatbuffers.Offset;
|
|
385
|
+
static startSignatureVector(builder: flatbuffers.Builder, numElems: number): void;
|
|
386
|
+
static addInvokeSurfaces(builder: flatbuffers.Builder, INVOKE_SURFACESOffset: flatbuffers.Offset): void;
|
|
387
|
+
static createInvokeSurfacesVector(builder: flatbuffers.Builder, data: invokeSurfaceKind[]): flatbuffers.Offset;
|
|
388
|
+
static startInvokeSurfacesVector(builder: flatbuffers.Builder, numElems: number): void;
|
|
389
|
+
static addMethods(builder: flatbuffers.Builder, METHODSOffset: flatbuffers.Offset): void;
|
|
390
|
+
static createMethodsVector(builder: flatbuffers.Builder, data: flatbuffers.Offset[]): flatbuffers.Offset;
|
|
391
|
+
static startMethodsVector(builder: flatbuffers.Builder, numElems: number): void;
|
|
392
|
+
static addHostCapabilities(builder: flatbuffers.Builder, HOST_CAPABILITIESOffset: flatbuffers.Offset): void;
|
|
393
|
+
static createHostCapabilitiesVector(builder: flatbuffers.Builder, data: flatbuffers.Offset[]): flatbuffers.Offset;
|
|
394
|
+
static startHostCapabilitiesVector(builder: flatbuffers.Builder, numElems: number): void;
|
|
395
|
+
static addTimers(builder: flatbuffers.Builder, TIMERSOffset: flatbuffers.Offset): void;
|
|
396
|
+
static createTimersVector(builder: flatbuffers.Builder, data: flatbuffers.Offset[]): flatbuffers.Offset;
|
|
397
|
+
static startTimersVector(builder: flatbuffers.Builder, numElems: number): void;
|
|
398
|
+
static addProtocols(builder: flatbuffers.Builder, PROTOCOLSOffset: flatbuffers.Offset): void;
|
|
399
|
+
static createProtocolsVector(builder: flatbuffers.Builder, data: flatbuffers.Offset[]): flatbuffers.Offset;
|
|
400
|
+
static startProtocolsVector(builder: flatbuffers.Builder, numElems: number): void;
|
|
401
|
+
static addSchemasUsed(builder: flatbuffers.Builder, SCHEMAS_USEDOffset: flatbuffers.Offset): void;
|
|
402
|
+
static createSchemasUsedVector(builder: flatbuffers.Builder, data: flatbuffers.Offset[]): flatbuffers.Offset;
|
|
403
|
+
static startSchemasUsedVector(builder: flatbuffers.Builder, numElems: number): void;
|
|
404
|
+
static addBuildArtifacts(builder: flatbuffers.Builder, BUILD_ARTIFACTSOffset: flatbuffers.Offset): void;
|
|
405
|
+
static createBuildArtifactsVector(builder: flatbuffers.Builder, data: flatbuffers.Offset[]): flatbuffers.Offset;
|
|
406
|
+
static startBuildArtifactsVector(builder: flatbuffers.Builder, numElems: number): void;
|
|
407
|
+
static addRuntimeTargets(builder: flatbuffers.Builder, RUNTIME_TARGETSOffset: flatbuffers.Offset): void;
|
|
408
|
+
static createRuntimeTargetsVector(builder: flatbuffers.Builder, data: flatbuffers.Offset[]): flatbuffers.Offset;
|
|
409
|
+
static startRuntimeTargetsVector(builder: flatbuffers.Builder, numElems: number): void;
|
|
410
|
+
static addAllowedXpubs(builder: flatbuffers.Builder, ALLOWED_XPUBSOffset: flatbuffers.Offset): void;
|
|
411
|
+
static createAllowedXpubsVector(builder: flatbuffers.Builder, data: flatbuffers.Offset[]): flatbuffers.Offset;
|
|
412
|
+
static startAllowedXpubsVector(builder: flatbuffers.Builder, numElems: number): void;
|
|
413
|
+
static addFlowNodes(builder: flatbuffers.Builder, FLOW_NODESOffset: flatbuffers.Offset): void;
|
|
414
|
+
static createFlowNodesVector(builder: flatbuffers.Builder, data: flatbuffers.Offset[]): flatbuffers.Offset;
|
|
415
|
+
static startFlowNodesVector(builder: flatbuffers.Builder, numElems: number): void;
|
|
416
|
+
static addFlowEdges(builder: flatbuffers.Builder, FLOW_EDGESOffset: flatbuffers.Offset): void;
|
|
417
|
+
static createFlowEdgesVector(builder: flatbuffers.Builder, data: flatbuffers.Offset[]): flatbuffers.Offset;
|
|
418
|
+
static startFlowEdgesVector(builder: flatbuffers.Builder, numElems: number): void;
|
|
419
|
+
static addFlowTriggers(builder: flatbuffers.Builder, FLOW_TRIGGERSOffset: flatbuffers.Offset): void;
|
|
420
|
+
static createFlowTriggersVector(builder: flatbuffers.Builder, data: flatbuffers.Offset[]): flatbuffers.Offset;
|
|
421
|
+
static startFlowTriggersVector(builder: flatbuffers.Builder, numElems: number): void;
|
|
422
|
+
static addFlowTriggerBindings(builder: flatbuffers.Builder, FLOW_TRIGGER_BINDINGSOffset: flatbuffers.Offset): void;
|
|
423
|
+
static createFlowTriggerBindingsVector(builder: flatbuffers.Builder, data: flatbuffers.Offset[]): flatbuffers.Offset;
|
|
424
|
+
static startFlowTriggerBindingsVector(builder: flatbuffers.Builder, numElems: number): void;
|
|
425
|
+
static endPLG(builder: flatbuffers.Builder): flatbuffers.Offset;
|
|
426
|
+
static finishPLGBuffer(builder: flatbuffers.Builder, offset: flatbuffers.Offset): void;
|
|
427
|
+
static finishSizePrefixedPLGBuffer(builder: flatbuffers.Builder, offset: flatbuffers.Offset): void;
|
|
428
|
+
static createPLG(builder: flatbuffers.Builder, PLUGIN_IDOffset: flatbuffers.Offset, NAMEOffset: flatbuffers.Offset, VERSIONOffset: flatbuffers.Offset, DESCRIPTIONOffset: flatbuffers.Offset, TAGLINEOffset: flatbuffers.Offset, PLUGIN_TYPE: pluginCategory, PUBLISHER_NAMEOffset: flatbuffers.Offset, PUBLISHER_HANDLEOffset: flatbuffers.Offset, PUBLISHER_URLOffset: flatbuffers.Offset, SUPPORT_URLOffset: flatbuffers.Offset, TAGSOffset: flatbuffers.Offset, FEATURESOffset: flatbuffers.Offset, SCREENSHOT_URLSOffset: flatbuffers.Offset, BANNER_URLOffset: flatbuffers.Offset, ABI_VERSION: number, WASM_HASHOffset: flatbuffers.Offset, WASM_SIZE: bigint, WASM_CIDOffset: flatbuffers.Offset, ENCRYPTED_WASM_HASHOffset: flatbuffers.Offset, ENCRYPTED_WASM_SIZE: bigint, ENTRY_FUNCTIONSOffset: flatbuffers.Offset, REQUIRED_SCHEMASOffset: flatbuffers.Offset, DEPENDENCIESOffset: flatbuffers.Offset, CAPABILITIESOffset: flatbuffers.Offset, PROVIDER_PEER_IDOffset: flatbuffers.Offset, PROVIDER_EPM_CIDOffset: flatbuffers.Offset, ENCRYPTED: boolean, REQUIRED_SCOPEOffset: flatbuffers.Offset, KEY_IDOffset: flatbuffers.Offset, MAX_GRANT_TIMEOUT_MS: bigint, MIN_PERMISSIONSOffset: flatbuffers.Offset, CREATED_AT: bigint, UPDATED_AT: bigint, DOCUMENTATION_URLOffset: flatbuffers.Offset, CHANGELOG_URLOffset: flatbuffers.Offset, ICON_URLOffset: flatbuffers.Offset, LICENSEOffset: flatbuffers.Offset, PAYMENT_MODEL: purchaseTier, PRICE_USD_CENTS: number, SUBSCRIPTION_PERIOD_DAYS: number, ACCEPTED_PAYMENT_METHODSOffset: flatbuffers.Offset, LISTING_STATUS: publicationState, SIGNATUREOffset: flatbuffers.Offset, INVOKE_SURFACESOffset: flatbuffers.Offset, METHODSOffset: flatbuffers.Offset, HOST_CAPABILITIESOffset: flatbuffers.Offset, TIMERSOffset: flatbuffers.Offset, PROTOCOLSOffset: flatbuffers.Offset, SCHEMAS_USEDOffset: flatbuffers.Offset, BUILD_ARTIFACTSOffset: flatbuffers.Offset, RUNTIME_TARGETSOffset: flatbuffers.Offset, ALLOWED_XPUBSOffset: flatbuffers.Offset, FLOW_NODESOffset: flatbuffers.Offset, FLOW_EDGESOffset: flatbuffers.Offset, FLOW_TRIGGERSOffset: flatbuffers.Offset, FLOW_TRIGGER_BINDINGSOffset: flatbuffers.Offset): flatbuffers.Offset;
|
|
429
|
+
unpack(): PLGT;
|
|
430
|
+
unpackTo(_o: PLGT): void;
|
|
431
|
+
}
|
|
432
|
+
export declare class PLGT implements flatbuffers.IGeneratedObject {
|
|
433
|
+
PLUGIN_ID: string | Uint8Array | null;
|
|
434
|
+
NAME: string | Uint8Array | null;
|
|
435
|
+
VERSION: string | Uint8Array | null;
|
|
436
|
+
DESCRIPTION: string | Uint8Array | null;
|
|
437
|
+
TAGLINE: string | Uint8Array | null;
|
|
438
|
+
PLUGIN_TYPE: pluginCategory;
|
|
439
|
+
PUBLISHER_NAME: string | Uint8Array | null;
|
|
440
|
+
PUBLISHER_HANDLE: string | Uint8Array | null;
|
|
441
|
+
PUBLISHER_URL: string | Uint8Array | null;
|
|
442
|
+
SUPPORT_URL: string | Uint8Array | null;
|
|
443
|
+
TAGS: (string)[];
|
|
444
|
+
FEATURES: (string)[];
|
|
445
|
+
SCREENSHOT_URLS: (string)[];
|
|
446
|
+
BANNER_URL: string | Uint8Array | null;
|
|
447
|
+
ABI_VERSION: number;
|
|
448
|
+
WASM_HASH: (number)[];
|
|
449
|
+
WASM_SIZE: bigint;
|
|
450
|
+
WASM_CID: string | Uint8Array | null;
|
|
451
|
+
ENCRYPTED_WASM_HASH: (number)[];
|
|
452
|
+
ENCRYPTED_WASM_SIZE: bigint;
|
|
453
|
+
ENTRY_FUNCTIONS: (EntryFunctionT)[];
|
|
454
|
+
REQUIRED_SCHEMAS: (string)[];
|
|
455
|
+
DEPENDENCIES: (PluginDependencyT)[];
|
|
456
|
+
CAPABILITIES: (PluginCapabilityT)[];
|
|
457
|
+
PROVIDER_PEER_ID: string | Uint8Array | null;
|
|
458
|
+
PROVIDER_EPM_CID: string | Uint8Array | null;
|
|
459
|
+
ENCRYPTED: boolean;
|
|
460
|
+
REQUIRED_SCOPE: string | Uint8Array | null;
|
|
461
|
+
KEY_ID: string | Uint8Array | null;
|
|
462
|
+
MAX_GRANT_TIMEOUT_MS: bigint;
|
|
463
|
+
MIN_PERMISSIONS: (string)[];
|
|
464
|
+
CREATED_AT: bigint;
|
|
465
|
+
UPDATED_AT: bigint;
|
|
466
|
+
DOCUMENTATION_URL: string | Uint8Array | null;
|
|
467
|
+
CHANGELOG_URL: string | Uint8Array | null;
|
|
468
|
+
ICON_URL: string | Uint8Array | null;
|
|
469
|
+
LICENSE: string | Uint8Array | null;
|
|
470
|
+
PAYMENT_MODEL: purchaseTier;
|
|
471
|
+
PRICE_USD_CENTS: number;
|
|
472
|
+
SUBSCRIPTION_PERIOD_DAYS: number;
|
|
473
|
+
ACCEPTED_PAYMENT_METHODS: (string)[];
|
|
474
|
+
LISTING_STATUS: publicationState;
|
|
475
|
+
SIGNATURE: (number)[];
|
|
476
|
+
INVOKE_SURFACES: (invokeSurfaceKind)[];
|
|
477
|
+
METHODS: (PLGMethodManifestT)[];
|
|
478
|
+
HOST_CAPABILITIES: (PLGHostCapabilityT)[];
|
|
479
|
+
TIMERS: (PLGTimerSpecT)[];
|
|
480
|
+
PROTOCOLS: (PLGProtocolSpecT)[];
|
|
481
|
+
SCHEMAS_USED: (FlatBufferTypeRefT)[];
|
|
482
|
+
BUILD_ARTIFACTS: (PLGBuildArtifactT)[];
|
|
483
|
+
RUNTIME_TARGETS: (string)[];
|
|
484
|
+
ALLOWED_XPUBS: (string)[];
|
|
485
|
+
FLOW_NODES: (PLGFlowNodeT)[];
|
|
486
|
+
FLOW_EDGES: (PLGFlowEdgeT)[];
|
|
487
|
+
FLOW_TRIGGERS: (PLGFlowTriggerT)[];
|
|
488
|
+
FLOW_TRIGGER_BINDINGS: (PLGFlowTriggerBindingT)[];
|
|
489
|
+
constructor(PLUGIN_ID?: string | Uint8Array | null, NAME?: string | Uint8Array | null, VERSION?: string | Uint8Array | null, DESCRIPTION?: string | Uint8Array | null, TAGLINE?: string | Uint8Array | null, PLUGIN_TYPE?: pluginCategory, PUBLISHER_NAME?: string | Uint8Array | null, PUBLISHER_HANDLE?: string | Uint8Array | null, PUBLISHER_URL?: string | Uint8Array | null, SUPPORT_URL?: string | Uint8Array | null, TAGS?: (string)[], FEATURES?: (string)[], SCREENSHOT_URLS?: (string)[], BANNER_URL?: string | Uint8Array | null, ABI_VERSION?: number, WASM_HASH?: (number)[], WASM_SIZE?: bigint, WASM_CID?: string | Uint8Array | null, ENCRYPTED_WASM_HASH?: (number)[], ENCRYPTED_WASM_SIZE?: bigint, ENTRY_FUNCTIONS?: (EntryFunctionT)[], REQUIRED_SCHEMAS?: (string)[], DEPENDENCIES?: (PluginDependencyT)[], CAPABILITIES?: (PluginCapabilityT)[], PROVIDER_PEER_ID?: string | Uint8Array | null, PROVIDER_EPM_CID?: string | Uint8Array | null, ENCRYPTED?: boolean, REQUIRED_SCOPE?: string | Uint8Array | null, KEY_ID?: string | Uint8Array | null, MAX_GRANT_TIMEOUT_MS?: bigint, MIN_PERMISSIONS?: (string)[], CREATED_AT?: bigint, UPDATED_AT?: bigint, DOCUMENTATION_URL?: string | Uint8Array | null, CHANGELOG_URL?: string | Uint8Array | null, ICON_URL?: string | Uint8Array | null, LICENSE?: string | Uint8Array | null, PAYMENT_MODEL?: purchaseTier, PRICE_USD_CENTS?: number, SUBSCRIPTION_PERIOD_DAYS?: number, ACCEPTED_PAYMENT_METHODS?: (string)[], LISTING_STATUS?: publicationState, SIGNATURE?: (number)[], INVOKE_SURFACES?: (invokeSurfaceKind)[], METHODS?: (PLGMethodManifestT)[], HOST_CAPABILITIES?: (PLGHostCapabilityT)[], TIMERS?: (PLGTimerSpecT)[], PROTOCOLS?: (PLGProtocolSpecT)[], SCHEMAS_USED?: (FlatBufferTypeRefT)[], BUILD_ARTIFACTS?: (PLGBuildArtifactT)[], RUNTIME_TARGETS?: (string)[], ALLOWED_XPUBS?: (string)[], FLOW_NODES?: (PLGFlowNodeT)[], FLOW_EDGES?: (PLGFlowEdgeT)[], FLOW_TRIGGERS?: (PLGFlowTriggerT)[], FLOW_TRIGGER_BINDINGS?: (PLGFlowTriggerBindingT)[]);
|
|
490
|
+
pack(builder: flatbuffers.Builder): flatbuffers.Offset;
|
|
491
|
+
}
|
|
492
|
+
//# sourceMappingURL=PLG.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PLG.d.ts","sourceRoot":"","sources":["../../../ts/PLG/PLG.ts"],"names":[],"mappings":"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"}
|