arcane-os 0.3.0 → 0.3.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +27 -0
- package/README.md +86 -117
- package/bin/arcane-test.mjs +170 -46
- package/browser-runtime/ai/browser-speech-artifacts.mjs +887 -909
- package/browser-runtime/ai/browser-speech-providers.mjs +96 -152
- package/browser-runtime/ai/browser-wasm-llm-provider.mjs +627 -819
- package/browser-runtime/ai/browser-wasm.mjs +24 -35
- package/browser-runtime/ai/browser-wllama-runtime.mjs +64 -316
- package/browser-runtime/ai/model-controller.mjs +584 -181
- package/browser-runtime/ai/speech-worker-client.mjs +8 -146
- package/browser-runtime/ai/speech-worker-runtime.mjs +643 -363
- package/browser-runtime/dom-event-instrumentation.mjs +55 -147
- package/browser-runtime/event-manager.mjs +239 -624
- package/package.json +5 -6
- package/runtime/arcane/components/app-bar.html +3 -15
- package/runtime/arcane/components/assistant-panel.html +10 -10
- package/runtime/arcane/components/calculator.html +1 -1
- package/runtime/arcane/components/chat.html +1359 -135
- package/runtime/arcane/components/conversation-view.html +2 -2
- package/runtime/arcane/components/document-inspector.html +11 -17
- package/runtime/arcane/components/file-manager.html +13 -56
- package/runtime/arcane/components/markdown-document.html +82 -281
- package/runtime/arcane/components/markdown-editor.html +7 -10
- package/runtime/arcane/components/media-embed.html +6 -6
- package/runtime/arcane/components/screen-capture.html +4 -4
- package/runtime/arcane/components/source-explanation.html +2 -2
- package/runtime/arcane/components/speech.html +112 -68
- package/runtime/arcane/components/terminal-workspace.html +4 -4
- package/runtime/arcane/components/theme-editor.html +1 -1
- package/runtime/arcane/components/unified-inbox.html +2 -2
- package/runtime/arcane/components/voice-transcription.html +31 -21
- package/runtime/arcane/entities/Calculation.js +2 -3
- package/runtime/arcane/entities/Chat.js +228 -43
- package/runtime/arcane/entities/Preference.js +3 -5
- package/runtime/arcane/entities/Weather.js +5 -5
- package/runtime/arcane/modules/AI.js +1050 -427
- package/runtime/arcane/modules/AIProviderRuntime.js +658 -363
- package/runtime/arcane/modules/AIResponseLength.js +9 -19
- package/runtime/arcane/modules/AIRuntimeState.js +109 -72
- package/runtime/arcane/modules/ArcaneNavigationPolicy.js +45 -32
- package/runtime/arcane/modules/BrowserTestSuite.js +78 -122
- package/runtime/arcane/modules/CalculatorEngine.js +9 -9
- package/runtime/arcane/modules/CommunicationAppController.js +3 -7
- package/runtime/arcane/modules/ComponentContracts.js +30 -32
- package/runtime/arcane/modules/ConfiguredAIChatSession.js +281 -230
- package/runtime/arcane/modules/ConversationActionItems.js +26 -59
- package/runtime/arcane/modules/ConversationClosingReport.js +34 -61
- package/runtime/arcane/modules/ConversationTimebox.js +27 -15
- package/runtime/arcane/modules/DBOPFSDocumentLibrary.js +152 -344
- package/runtime/arcane/modules/DocumentLexicalSearch.js +25 -91
- package/runtime/arcane/modules/HTMLImport.js +54 -1
- package/runtime/arcane/modules/IsolatedModelQuestionRunner.js +40 -203
- package/runtime/arcane/modules/LocalAIReadiness.js +40 -60
- package/runtime/arcane/modules/LocalAIReadinessController.js +15 -13
- package/runtime/arcane/modules/MD.js +1 -45
- package/runtime/arcane/modules/Mail.js +51 -103
- package/runtime/arcane/modules/MailOutbox.mjs +95 -193
- package/runtime/arcane/modules/MailTransport.mjs +36 -57
- package/runtime/arcane/modules/ModelDefinition.js +22 -106
- package/runtime/arcane/modules/OpenMeteoWeatherProvider.js +39 -101
- package/runtime/arcane/modules/PersistentAIChatSession.js +281 -18
- package/runtime/arcane/modules/PreferenceStore.js +102 -30
- package/runtime/arcane/modules/RiskSignalAnalyzer.js +8 -9
- package/runtime/arcane/modules/ScopedOPFSCache.js +7 -42
- package/runtime/arcane/modules/ScreenCapture.js +175 -128
- package/runtime/arcane/modules/SpeechPlayback.js +46 -149
- package/runtime/arcane/modules/StaticDocumentCatalog.js +173 -407
- package/runtime/arcane/modules/ToolCallRouter.js +25 -12
- package/runtime/arcane/modules/YouTubeMedia.js +6 -5
- package/schemas/arcane-app-bundle.schema.json +13 -78
- package/schemas/arcane-app.schema.json +9 -25
- package/schemas/arcane-lock.schema.json +18 -151
- package/schemas/arcane-package.schema.json +2 -16
- package/schemas/native-build-plan.schema.json +119 -122
- package/src/app-descriptor.mjs +75 -132
- package/src/application-tests.mjs +200 -0
- package/src/cli/main.mjs +27 -46
- package/src/constants.mjs +3 -4
- package/src/dev-server.mjs +30 -324
- package/src/doctor.mjs +92 -154
- package/src/dom-event-instrumentation.mjs +55 -147
- package/src/errors.mjs +2 -3
- package/src/event-manager.mjs +239 -624
- package/src/event-queue.mjs +3 -3
- package/src/import-map.mjs +273 -1028
- package/src/index.mjs +14 -16
- package/src/installed-sdk-runtime.mjs +40 -62
- package/src/integrated-provider-loader.mjs +53 -382
- package/src/mail-api.mjs +0 -2
- package/src/mail-server.mjs +224 -580
- package/src/mail.mjs +4 -10
- package/src/native-plan.mjs +163 -598
- package/src/native-provider-loader.mjs +104 -1063
- package/src/packager/core.mjs +485 -3229
- package/src/process.mjs +5 -10
- package/src/release-bundle.mjs +292 -2405
- package/src/runtime.mjs +76 -396
- package/src/scaffold.mjs +30 -80
- package/src/sdk-browser-runtime.mjs +70 -626
- package/src/source-server.mjs +588 -0
- package/src/targets/index.mjs +78 -188
- package/src/templates/workspace-template.mjs +19 -135
- package/src/testing-loader.mjs +164 -0
- package/src/testing.mjs +1 -1
- package/src/toolchain.mjs +131 -544
- package/src/update-check.mjs +26 -64
- package/src/workspace-operation-lock.mjs +139 -430
- package/src/workspace-runtime.mjs +112 -779
- package/src/workspace.mjs +40 -302
- package/browser-runtime/ARCANE_SDK_BROWSER_RELEASE.json +0 -218
- package/browser-runtime/ai/ARCANE_AI_BROWSER_SPEECH_COMPONENTS.json +0 -203
- package/browser-runtime/ai/ARCANE_AI_BROWSER_WASM_COMPONENTS.json +0 -80
- package/browser-runtime/ai/internal/sha256.mjs +0 -166
- package/docs/architecture.md +0 -344
- package/docs/compatibility.md +0 -36
- package/docs/event-manager.md +0 -294
- package/docs/platform-targets.md +0 -108
- package/docs/publishing.md +0 -201
- package/docs/reference/README.md +0 -187
- package/docs/reference/ai/browser-speech-package-authority.json +0 -835
- package/docs/reference/ai/browser-speech.md +0 -1252
- package/docs/reference/ai/browser-wasm.md +0 -530
- package/docs/reference/arcane-ollama.md +0 -288
- package/docs/reference/availability-and-normalization.md +0 -183
- package/docs/reference/behavioral-testing.md +0 -133
- package/docs/reference/cli.md +0 -779
- package/docs/reference/core/README.md +0 -62
- package/docs/reference/core/arcane-ai-contracts.md +0 -907
- package/docs/reference/core/arcane-api.md +0 -601
- package/docs/reference/core/arcane-entities.md +0 -65
- package/docs/reference/core/arcane-events.md +0 -134
- package/docs/reference/core/ollama-module.md +0 -181
- package/docs/reference/core/reference/arcane-api/ai-and-ollama.md +0 -1909
- package/docs/reference/core/reference/arcane-api/applications-terminal-capabilities.md +0 -1057
- package/docs/reference/core/reference/arcane-api/core-and-events.md +0 -320
- package/docs/reference/core/reference/arcane-api/filesystem-storage-preferences-appearance.md +0 -610
- package/docs/reference/core/reference/arcane-api/namespaces.md +0 -1157
- package/docs/reference/core/reference/arcane-api/platform-installation-users-system.md +0 -1423
- package/docs/reference/core/reference/arcane-api/session-provisioning-diagnostics-development.md +0 -315
- package/docs/reference/event-manager.md +0 -1511
- package/docs/reference/inventory/package-api.json +0 -3284
- package/docs/reference/inventory/runtime-components.json +0 -1011
- package/docs/reference/inventory/runtime-entities.json +0 -26
- package/docs/reference/inventory/runtime-modules.json +0 -1431
- package/docs/reference/mail.md +0 -316
- package/docs/reference/protocols.md +0 -677
- package/docs/reference/runtime-components.md +0 -1366
- package/docs/reference/runtime-entities.md +0 -303
- package/docs/reference/runtime-modules.md +0 -2960
- package/docs/reference/sdk-api.md +0 -6694
- package/docs/roadmap.md +0 -79
- package/docs/work-amplification.md +0 -129
- package/runtime/ARCANE_RUNTIME_RELEASE.json +0 -826
|
@@ -1,3284 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"schemaVersion": 1,
|
|
3
|
-
"sdkVersion": "0.3.0",
|
|
4
|
-
"environment": {
|
|
5
|
-
"runtime": "Node.js for Node entrypoints; browser for browser-only entrypoints",
|
|
6
|
-
"minimumVersion": "22.23.2 for Node entrypoints",
|
|
7
|
-
"moduleSystem": "ESM"
|
|
8
|
-
},
|
|
9
|
-
"memberCount": 200,
|
|
10
|
-
"members": [
|
|
11
|
-
{
|
|
12
|
-
"id": "root:APP_BUNDLE_DESCRIPTOR_NAME",
|
|
13
|
-
"name": "APP_BUNDLE_DESCRIPTOR_NAME",
|
|
14
|
-
"displayName": "APP_BUNDLE_DESCRIPTOR_NAME",
|
|
15
|
-
"kind": "constant",
|
|
16
|
-
"signature": "const APP_BUNDLE_DESCRIPTOR_NAME",
|
|
17
|
-
"entrypoints": [
|
|
18
|
-
"arcane-os",
|
|
19
|
-
"arcane-os/release-bundle"
|
|
20
|
-
],
|
|
21
|
-
"primaryImport": "arcane-os",
|
|
22
|
-
"group": "Packaging and release bundles",
|
|
23
|
-
"summary": "Canonical descriptor filename stored in an external application release bundle.",
|
|
24
|
-
"availability": "Node",
|
|
25
|
-
"protocol": "SDK packager, receipt, or deterministic bundle contract",
|
|
26
|
-
"normalization": "Exact immutable SDK value"
|
|
27
|
-
},
|
|
28
|
-
{
|
|
29
|
-
"id": "root:APP_BUNDLE_EXTENSION",
|
|
30
|
-
"name": "APP_BUNDLE_EXTENSION",
|
|
31
|
-
"displayName": "APP_BUNDLE_EXTENSION",
|
|
32
|
-
"kind": "constant",
|
|
33
|
-
"signature": "const APP_BUNDLE_EXTENSION",
|
|
34
|
-
"entrypoints": [
|
|
35
|
-
"arcane-os",
|
|
36
|
-
"arcane-os/release-bundle"
|
|
37
|
-
],
|
|
38
|
-
"primaryImport": "arcane-os",
|
|
39
|
-
"group": "Packaging and release bundles",
|
|
40
|
-
"summary": "Required filename extension for deterministic external application release bundles.",
|
|
41
|
-
"availability": "Node",
|
|
42
|
-
"protocol": "SDK packager, receipt, or deterministic bundle contract",
|
|
43
|
-
"normalization": "Exact immutable SDK value"
|
|
44
|
-
},
|
|
45
|
-
{
|
|
46
|
-
"id": "root:APP_BUNDLE_FORMAT",
|
|
47
|
-
"name": "APP_BUNDLE_FORMAT",
|
|
48
|
-
"displayName": "APP_BUNDLE_FORMAT",
|
|
49
|
-
"kind": "constant",
|
|
50
|
-
"signature": "const APP_BUNDLE_FORMAT",
|
|
51
|
-
"entrypoints": [
|
|
52
|
-
"arcane-os",
|
|
53
|
-
"arcane-os/release-bundle"
|
|
54
|
-
],
|
|
55
|
-
"primaryImport": "arcane-os",
|
|
56
|
-
"group": "Packaging and release bundles",
|
|
57
|
-
"summary": "Canonical archive encoding used by external application release bundles.",
|
|
58
|
-
"availability": "Node",
|
|
59
|
-
"protocol": "SDK packager, receipt, or deterministic bundle contract",
|
|
60
|
-
"normalization": "Exact immutable SDK value"
|
|
61
|
-
},
|
|
62
|
-
{
|
|
63
|
-
"id": "root:APP_BUNDLE_KIND",
|
|
64
|
-
"name": "APP_BUNDLE_KIND",
|
|
65
|
-
"displayName": "APP_BUNDLE_KIND",
|
|
66
|
-
"kind": "constant",
|
|
67
|
-
"signature": "const APP_BUNDLE_KIND",
|
|
68
|
-
"entrypoints": [
|
|
69
|
-
"arcane-os",
|
|
70
|
-
"arcane-os/release-bundle"
|
|
71
|
-
],
|
|
72
|
-
"primaryImport": "arcane-os",
|
|
73
|
-
"group": "Packaging and release bundles",
|
|
74
|
-
"summary": "Stable manifest kind identifying an Arcane application release bundle.",
|
|
75
|
-
"availability": "Node",
|
|
76
|
-
"protocol": "SDK packager, receipt, or deterministic bundle contract",
|
|
77
|
-
"normalization": "Exact immutable SDK value"
|
|
78
|
-
},
|
|
79
|
-
{
|
|
80
|
-
"id": "root:APP_BUNDLE_LIMITS",
|
|
81
|
-
"name": "APP_BUNDLE_LIMITS",
|
|
82
|
-
"displayName": "APP_BUNDLE_LIMITS",
|
|
83
|
-
"kind": "constant",
|
|
84
|
-
"signature": "const APP_BUNDLE_LIMITS",
|
|
85
|
-
"entrypoints": [
|
|
86
|
-
"arcane-os",
|
|
87
|
-
"arcane-os/release-bundle"
|
|
88
|
-
],
|
|
89
|
-
"primaryImport": "arcane-os",
|
|
90
|
-
"group": "Packaging and release bundles",
|
|
91
|
-
"summary": "Frozen compressed-size, expanded-size, entry-count, and path limits enforced by bundle creation and verification.",
|
|
92
|
-
"availability": "Node",
|
|
93
|
-
"protocol": "SDK packager, receipt, or deterministic bundle contract",
|
|
94
|
-
"normalization": "Exact immutable SDK value"
|
|
95
|
-
},
|
|
96
|
-
{
|
|
97
|
-
"id": "root:APP_BUNDLE_MANIFEST_NAME",
|
|
98
|
-
"name": "APP_BUNDLE_MANIFEST_NAME",
|
|
99
|
-
"displayName": "APP_BUNDLE_MANIFEST_NAME",
|
|
100
|
-
"kind": "constant",
|
|
101
|
-
"signature": "const APP_BUNDLE_MANIFEST_NAME",
|
|
102
|
-
"entrypoints": [
|
|
103
|
-
"arcane-os",
|
|
104
|
-
"arcane-os/release-bundle"
|
|
105
|
-
],
|
|
106
|
-
"primaryImport": "arcane-os",
|
|
107
|
-
"group": "Packaging and release bundles",
|
|
108
|
-
"summary": "Canonical bundle-envelope manifest filename.",
|
|
109
|
-
"availability": "Node",
|
|
110
|
-
"protocol": "SDK packager, receipt, or deterministic bundle contract",
|
|
111
|
-
"normalization": "Exact immutable SDK value"
|
|
112
|
-
},
|
|
113
|
-
{
|
|
114
|
-
"id": "root:APP_BUNDLE_RELEASE_PATH",
|
|
115
|
-
"name": "APP_BUNDLE_RELEASE_PATH",
|
|
116
|
-
"displayName": "APP_BUNDLE_RELEASE_PATH",
|
|
117
|
-
"kind": "constant",
|
|
118
|
-
"signature": "const APP_BUNDLE_RELEASE_PATH",
|
|
119
|
-
"entrypoints": [
|
|
120
|
-
"arcane-os",
|
|
121
|
-
"arcane-os/release-bundle"
|
|
122
|
-
],
|
|
123
|
-
"primaryImport": "arcane-os",
|
|
124
|
-
"group": "Packaging and release bundles",
|
|
125
|
-
"summary": "Canonical path of the packaged release manifest inside a bundle payload.",
|
|
126
|
-
"availability": "Node",
|
|
127
|
-
"protocol": "SDK packager, receipt, or deterministic bundle contract",
|
|
128
|
-
"normalization": "Exact immutable SDK value"
|
|
129
|
-
},
|
|
130
|
-
{
|
|
131
|
-
"id": "root:APP_BUNDLE_SCHEMA_VERSION",
|
|
132
|
-
"name": "APP_BUNDLE_SCHEMA_VERSION",
|
|
133
|
-
"displayName": "APP_BUNDLE_SCHEMA_VERSION",
|
|
134
|
-
"kind": "constant",
|
|
135
|
-
"signature": "const APP_BUNDLE_SCHEMA_VERSION",
|
|
136
|
-
"entrypoints": [
|
|
137
|
-
"arcane-os",
|
|
138
|
-
"arcane-os/release-bundle"
|
|
139
|
-
],
|
|
140
|
-
"primaryImport": "arcane-os",
|
|
141
|
-
"group": "Packaging and release bundles",
|
|
142
|
-
"summary": "Current immutable bundle-envelope schema version.",
|
|
143
|
-
"availability": "Node",
|
|
144
|
-
"protocol": "SDK packager, receipt, or deterministic bundle contract",
|
|
145
|
-
"normalization": "Exact immutable SDK value"
|
|
146
|
-
},
|
|
147
|
-
{
|
|
148
|
-
"id": "root:APP_BUNDLE_SUPPORTED_SDK_VERSIONS",
|
|
149
|
-
"name": "APP_BUNDLE_SUPPORTED_SDK_VERSIONS",
|
|
150
|
-
"displayName": "APP_BUNDLE_SUPPORTED_SDK_VERSIONS",
|
|
151
|
-
"kind": "constant",
|
|
152
|
-
"signature": "const APP_BUNDLE_SUPPORTED_SDK_VERSIONS",
|
|
153
|
-
"entrypoints": [
|
|
154
|
-
"arcane-os/release-bundle"
|
|
155
|
-
],
|
|
156
|
-
"primaryImport": "arcane-os/release-bundle",
|
|
157
|
-
"group": "Packaging and release bundles",
|
|
158
|
-
"summary": "Exact SDK generations accepted by this bundle verifier.",
|
|
159
|
-
"availability": "Node",
|
|
160
|
-
"protocol": "SDK packager, receipt, or deterministic bundle contract",
|
|
161
|
-
"normalization": "Exact immutable SDK value"
|
|
162
|
-
},
|
|
163
|
-
{
|
|
164
|
-
"id": "root:APP_CONFIG_NAME",
|
|
165
|
-
"name": "APP_CONFIG_NAME",
|
|
166
|
-
"displayName": "APP_CONFIG_NAME",
|
|
167
|
-
"kind": "constant",
|
|
168
|
-
"signature": "const APP_CONFIG_NAME",
|
|
169
|
-
"entrypoints": [
|
|
170
|
-
"arcane-os/packager"
|
|
171
|
-
],
|
|
172
|
-
"primaryImport": "arcane-os/packager",
|
|
173
|
-
"group": "Packaging and release bundles",
|
|
174
|
-
"summary": "Canonical schema-1 application package configuration filename used by the packager.",
|
|
175
|
-
"availability": "Node",
|
|
176
|
-
"protocol": "SDK packager, receipt, or deterministic bundle contract",
|
|
177
|
-
"normalization": "Exact immutable SDK value"
|
|
178
|
-
},
|
|
179
|
-
{
|
|
180
|
-
"id": "root:APP_DESCRIPTOR_NAME",
|
|
181
|
-
"name": "APP_DESCRIPTOR_NAME",
|
|
182
|
-
"displayName": "APP_DESCRIPTOR_NAME",
|
|
183
|
-
"kind": "constant",
|
|
184
|
-
"signature": "const APP_DESCRIPTOR_NAME",
|
|
185
|
-
"entrypoints": [
|
|
186
|
-
"arcane-os"
|
|
187
|
-
],
|
|
188
|
-
"primaryImport": "arcane-os",
|
|
189
|
-
"group": "Runtime and app descriptors",
|
|
190
|
-
"summary": "Canonical schema-2 application descriptor filename.",
|
|
191
|
-
"availability": "Node",
|
|
192
|
-
"protocol": "Node ESM",
|
|
193
|
-
"normalization": "Exact immutable SDK value"
|
|
194
|
-
},
|
|
195
|
-
{
|
|
196
|
-
"id": "root:APP_DESCRIPTOR_SCHEMA_VERSION",
|
|
197
|
-
"name": "APP_DESCRIPTOR_SCHEMA_VERSION",
|
|
198
|
-
"displayName": "APP_DESCRIPTOR_SCHEMA_VERSION",
|
|
199
|
-
"kind": "constant",
|
|
200
|
-
"signature": "const APP_DESCRIPTOR_SCHEMA_VERSION",
|
|
201
|
-
"entrypoints": [
|
|
202
|
-
"arcane-os"
|
|
203
|
-
],
|
|
204
|
-
"primaryImport": "arcane-os",
|
|
205
|
-
"group": "Runtime and app descriptors",
|
|
206
|
-
"summary": "Current authored application descriptor schema version.",
|
|
207
|
-
"availability": "Node",
|
|
208
|
-
"protocol": "Node ESM",
|
|
209
|
-
"normalization": "Exact immutable SDK value"
|
|
210
|
-
},
|
|
211
|
-
{
|
|
212
|
-
"id": "root:appDescriptorSha256",
|
|
213
|
-
"name": "appDescriptorSha256",
|
|
214
|
-
"displayName": "appDescriptorSha256()",
|
|
215
|
-
"kind": "function",
|
|
216
|
-
"signature": "appDescriptorSha256(descriptor)",
|
|
217
|
-
"entrypoints": [
|
|
218
|
-
"arcane-os"
|
|
219
|
-
],
|
|
220
|
-
"primaryImport": "arcane-os",
|
|
221
|
-
"group": "Runtime and app descriptors",
|
|
222
|
-
"summary": "Returns the SHA-256 digest of the canonical validated schema-2 application descriptor.",
|
|
223
|
-
"availability": "Node",
|
|
224
|
-
"protocol": "Node ESM",
|
|
225
|
-
"normalization": "SDK-normalized inputs, errors, events, and documented result"
|
|
226
|
-
},
|
|
227
|
-
{
|
|
228
|
-
"id": "root:ARCANE_INTEGRATED_PROVIDER_RELATIVE_PATH",
|
|
229
|
-
"name": "ARCANE_INTEGRATED_PROVIDER_RELATIVE_PATH",
|
|
230
|
-
"displayName": "ARCANE_INTEGRATED_PROVIDER_RELATIVE_PATH",
|
|
231
|
-
"kind": "constant",
|
|
232
|
-
"signature": "const ARCANE_INTEGRATED_PROVIDER_RELATIVE_PATH",
|
|
233
|
-
"entrypoints": [
|
|
234
|
-
"arcane-os",
|
|
235
|
-
"arcane-os/integrated-provider"
|
|
236
|
-
],
|
|
237
|
-
"primaryImport": "arcane-os",
|
|
238
|
-
"group": "Targets, native plans, and providers",
|
|
239
|
-
"summary": "Frozen repository-relative path of Arcane OS's integrated shared-development provider.",
|
|
240
|
-
"availability": "Node; selected browser/native target or provider as documented",
|
|
241
|
-
"protocol": "arcane-target-adapter/1, arcane-native-build-plan/1, or provider protocol",
|
|
242
|
-
"normalization": "Exact immutable SDK value"
|
|
243
|
-
},
|
|
244
|
-
{
|
|
245
|
-
"id": "root:ARCANE_MACHINE_BUNDLE_VERSION",
|
|
246
|
-
"name": "ARCANE_MACHINE_BUNDLE_VERSION",
|
|
247
|
-
"displayName": "ARCANE_MACHINE_BUNDLE_VERSION",
|
|
248
|
-
"kind": "constant",
|
|
249
|
-
"signature": "const ARCANE_MACHINE_BUNDLE_VERSION",
|
|
250
|
-
"entrypoints": [
|
|
251
|
-
"arcane-os"
|
|
252
|
-
],
|
|
253
|
-
"primaryImport": "arcane-os",
|
|
254
|
-
"group": "Identity and protocol constants",
|
|
255
|
-
"summary": "Exact Arcane machine-bundle generation paired with this SDK runtime.",
|
|
256
|
-
"availability": "Node",
|
|
257
|
-
"protocol": "Node ESM",
|
|
258
|
-
"normalization": "Exact immutable SDK value"
|
|
259
|
-
},
|
|
260
|
-
{
|
|
261
|
-
"id": "root:ARCANE_NATIVE_PROVIDER_PATHS",
|
|
262
|
-
"name": "ARCANE_NATIVE_PROVIDER_PATHS",
|
|
263
|
-
"displayName": "ARCANE_NATIVE_PROVIDER_PATHS",
|
|
264
|
-
"kind": "constant",
|
|
265
|
-
"signature": "const ARCANE_NATIVE_PROVIDER_PATHS",
|
|
266
|
-
"entrypoints": [
|
|
267
|
-
"arcane-os",
|
|
268
|
-
"arcane-os/native-provider"
|
|
269
|
-
],
|
|
270
|
-
"primaryImport": "arcane-os",
|
|
271
|
-
"group": "Targets, native plans, and providers",
|
|
272
|
-
"summary": "Frozen target-to-provider path registry for native development providers.",
|
|
273
|
-
"availability": "Node; selected browser/native target or provider as documented",
|
|
274
|
-
"protocol": "arcane-target-adapter/1, arcane-native-build-plan/1, or provider protocol",
|
|
275
|
-
"normalization": "Exact immutable SDK value"
|
|
276
|
-
},
|
|
277
|
-
{
|
|
278
|
-
"id": "root:ARCANE_PORTABLE_PROVIDER_PATH",
|
|
279
|
-
"name": "ARCANE_PORTABLE_PROVIDER_PATH",
|
|
280
|
-
"displayName": "ARCANE_PORTABLE_PROVIDER_PATH",
|
|
281
|
-
"kind": "constant",
|
|
282
|
-
"signature": "const ARCANE_PORTABLE_PROVIDER_PATH",
|
|
283
|
-
"entrypoints": [
|
|
284
|
-
"arcane-os",
|
|
285
|
-
"arcane-os/native-provider"
|
|
286
|
-
],
|
|
287
|
-
"primaryImport": "arcane-os",
|
|
288
|
-
"group": "Targets, native plans, and providers",
|
|
289
|
-
"summary": "Compatibility alias for the portable provider path.",
|
|
290
|
-
"availability": "Node; selected browser/native target or provider as documented",
|
|
291
|
-
"protocol": "arcane-target-adapter/1, arcane-native-build-plan/1, or provider protocol",
|
|
292
|
-
"normalization": "Exact immutable SDK value"
|
|
293
|
-
},
|
|
294
|
-
{
|
|
295
|
-
"id": "root:ARCANE_PROTOCOL",
|
|
296
|
-
"name": "ARCANE_PROTOCOL",
|
|
297
|
-
"displayName": "ARCANE_PROTOCOL",
|
|
298
|
-
"kind": "constant",
|
|
299
|
-
"signature": "const ARCANE_PROTOCOL",
|
|
300
|
-
"entrypoints": [
|
|
301
|
-
"arcane-os"
|
|
302
|
-
],
|
|
303
|
-
"primaryImport": "arcane-os",
|
|
304
|
-
"group": "Identity and protocol constants",
|
|
305
|
-
"summary": "Application-facing Arcane bridge protocol required by this SDK.",
|
|
306
|
-
"availability": "Node",
|
|
307
|
-
"protocol": "Node ESM",
|
|
308
|
-
"normalization": "Exact immutable SDK value"
|
|
309
|
-
},
|
|
310
|
-
{
|
|
311
|
-
"id": "root:ARCANE_UPSTREAM_COMMIT",
|
|
312
|
-
"name": "ARCANE_UPSTREAM_COMMIT",
|
|
313
|
-
"displayName": "ARCANE_UPSTREAM_COMMIT",
|
|
314
|
-
"kind": "constant",
|
|
315
|
-
"signature": "const ARCANE_UPSTREAM_COMMIT",
|
|
316
|
-
"entrypoints": [
|
|
317
|
-
"arcane-os"
|
|
318
|
-
],
|
|
319
|
-
"primaryImport": "arcane-os",
|
|
320
|
-
"group": "Identity and protocol constants",
|
|
321
|
-
"summary": "Exact Arcane OS source commit from which the synchronized runtime was built.",
|
|
322
|
-
"availability": "Node",
|
|
323
|
-
"protocol": "Node ESM",
|
|
324
|
-
"normalization": "Exact immutable SDK value"
|
|
325
|
-
},
|
|
326
|
-
{
|
|
327
|
-
"id": "root:ARCANE_UPSTREAM_REPOSITORY",
|
|
328
|
-
"name": "ARCANE_UPSTREAM_REPOSITORY",
|
|
329
|
-
"displayName": "ARCANE_UPSTREAM_REPOSITORY",
|
|
330
|
-
"kind": "constant",
|
|
331
|
-
"signature": "const ARCANE_UPSTREAM_REPOSITORY",
|
|
332
|
-
"entrypoints": [
|
|
333
|
-
"arcane-os"
|
|
334
|
-
],
|
|
335
|
-
"primaryImport": "arcane-os",
|
|
336
|
-
"group": "Identity and protocol constants",
|
|
337
|
-
"summary": "Canonical upstream Arcane OS repository URL.",
|
|
338
|
-
"availability": "Node",
|
|
339
|
-
"protocol": "Node ESM",
|
|
340
|
-
"normalization": "Exact immutable SDK value"
|
|
341
|
-
},
|
|
342
|
-
{
|
|
343
|
-
"id": "root:ArcaneError",
|
|
344
|
-
"name": "ArcaneError",
|
|
345
|
-
"displayName": "ArcaneError",
|
|
346
|
-
"kind": "class",
|
|
347
|
-
"signature": "new ArcaneError(code, message, {details, cause, exitCode}={})",
|
|
348
|
-
"entrypoints": [
|
|
349
|
-
"arcane-os"
|
|
350
|
-
],
|
|
351
|
-
"primaryImport": "arcane-os",
|
|
352
|
-
"group": "Errors",
|
|
353
|
-
"summary": "Normalized SDK error class carrying a stable code, human message, optional resolution details, cause, and exit status.",
|
|
354
|
-
"availability": "Node",
|
|
355
|
-
"protocol": "Node ESM",
|
|
356
|
-
"normalization": "ArcaneError and JSON-safe error normalization"
|
|
357
|
-
},
|
|
358
|
-
{
|
|
359
|
-
"id": "root:assertIntegratedNativeToolchain",
|
|
360
|
-
"name": "assertIntegratedNativeToolchain",
|
|
361
|
-
"displayName": "assertIntegratedNativeToolchain()",
|
|
362
|
-
"kind": "function",
|
|
363
|
-
"signature": "assertIntegratedNativeToolchain({workspaceMode, workspaceRoot, toolchainRoot, target}={})",
|
|
364
|
-
"entrypoints": [
|
|
365
|
-
"arcane-os",
|
|
366
|
-
"arcane-os/toolchain"
|
|
367
|
-
],
|
|
368
|
-
"primaryImport": "arcane-os",
|
|
369
|
-
"group": "Targets, native plans, and providers",
|
|
370
|
-
"summary": "Requires an integrated workspace and selected native toolchain root to resolve to the same canonical Arcane checkout.",
|
|
371
|
-
"availability": "Node; selected browser/native target or provider as documented",
|
|
372
|
-
"protocol": "arcane-target-adapter/1, arcane-native-build-plan/1, or provider protocol",
|
|
373
|
-
"normalization": "Normalized plan/admission/receipt; target-specific artifact detail preserved"
|
|
374
|
-
},
|
|
375
|
-
{
|
|
376
|
-
"id": "root:assertIntegratedPortableToolchain",
|
|
377
|
-
"name": "assertIntegratedPortableToolchain",
|
|
378
|
-
"displayName": "assertIntegratedPortableToolchain()",
|
|
379
|
-
"kind": "function",
|
|
380
|
-
"signature": "assertIntegratedPortableToolchain(options={})",
|
|
381
|
-
"entrypoints": [
|
|
382
|
-
"arcane-os",
|
|
383
|
-
"arcane-os/toolchain"
|
|
384
|
-
],
|
|
385
|
-
"primaryImport": "arcane-os",
|
|
386
|
-
"group": "Targets, native plans, and providers",
|
|
387
|
-
"summary": "Portable-target compatibility wrapper for the integrated native checkout assertion.",
|
|
388
|
-
"availability": "Node; selected browser/native target or provider as documented",
|
|
389
|
-
"protocol": "arcane-target-adapter/1, arcane-native-build-plan/1, or provider protocol",
|
|
390
|
-
"normalization": "Normalized plan/admission/receipt; target-specific artifact detail preserved"
|
|
391
|
-
},
|
|
392
|
-
{
|
|
393
|
-
"id": "root:assertNativeApplicationToolchainCompatibility",
|
|
394
|
-
"name": "assertNativeApplicationToolchainCompatibility",
|
|
395
|
-
"displayName": "assertNativeApplicationToolchainCompatibility()",
|
|
396
|
-
"kind": "function",
|
|
397
|
-
"signature": "assertNativeApplicationToolchainCompatibility({prepared, toolchainReceipt}={})",
|
|
398
|
-
"entrypoints": [
|
|
399
|
-
"arcane-os",
|
|
400
|
-
"arcane-os/toolchain"
|
|
401
|
-
],
|
|
402
|
-
"primaryImport": "arcane-os",
|
|
403
|
-
"group": "Targets, native plans, and providers",
|
|
404
|
-
"summary": "Checks a prepared native toolchain receipt against the selected application's declared Core requirements.",
|
|
405
|
-
"availability": "Node; selected browser/native target or provider as documented",
|
|
406
|
-
"protocol": "arcane-target-adapter/1, arcane-native-build-plan/1, or provider protocol",
|
|
407
|
-
"normalization": "Normalized plan/admission/receipt; target-specific artifact detail preserved"
|
|
408
|
-
},
|
|
409
|
-
{
|
|
410
|
-
"id": "root:assertNativeToolchainCompatibility",
|
|
411
|
-
"name": "assertNativeToolchainCompatibility",
|
|
412
|
-
"displayName": "assertNativeToolchainCompatibility()",
|
|
413
|
-
"kind": "function",
|
|
414
|
-
"signature": "assertNativeToolchainCompatibility({ appDescriptor, toolchainReceipt, minimumCoreVersion }={})",
|
|
415
|
-
"entrypoints": [
|
|
416
|
-
"arcane-os",
|
|
417
|
-
"arcane-os/native"
|
|
418
|
-
],
|
|
419
|
-
"primaryImport": "arcane-os",
|
|
420
|
-
"group": "Targets, native plans, and providers",
|
|
421
|
-
"summary": "Validates that a toolchain receipt provides the required Core version, protocol, features, capabilities, and methods.",
|
|
422
|
-
"availability": "Node; selected browser/native target or provider as documented",
|
|
423
|
-
"protocol": "arcane-target-adapter/1, arcane-native-build-plan/1, or provider protocol",
|
|
424
|
-
"normalization": "Normalized plan/admission/receipt; target-specific artifact detail preserved"
|
|
425
|
-
},
|
|
426
|
-
{
|
|
427
|
-
"id": "root:assertPortableToolchainCompatibility",
|
|
428
|
-
"name": "assertPortableToolchainCompatibility",
|
|
429
|
-
"displayName": "assertPortableToolchainCompatibility()",
|
|
430
|
-
"kind": "function",
|
|
431
|
-
"signature": "assertPortableToolchainCompatibility(options={})",
|
|
432
|
-
"entrypoints": [
|
|
433
|
-
"arcane-os",
|
|
434
|
-
"arcane-os/toolchain"
|
|
435
|
-
],
|
|
436
|
-
"primaryImport": "arcane-os",
|
|
437
|
-
"group": "Targets, native plans, and providers",
|
|
438
|
-
"summary": "Portable-target compatibility wrapper for native application/toolchain admission.",
|
|
439
|
-
"availability": "Node; selected browser/native target or provider as documented",
|
|
440
|
-
"protocol": "arcane-target-adapter/1, arcane-native-build-plan/1, or provider protocol",
|
|
441
|
-
"normalization": "Normalized plan/admission/receipt; target-specific artifact detail preserved"
|
|
442
|
-
},
|
|
443
|
-
{
|
|
444
|
-
"id": "root:assessArcaneOllama",
|
|
445
|
-
"name": "assessArcaneOllama",
|
|
446
|
-
"displayName": "assessArcaneOllama()",
|
|
447
|
-
"kind": "function",
|
|
448
|
-
"signature": "async assessArcaneOllama({ signal, onEvent, platform=process.platform, run=runProcess, fileExists=exists }={})",
|
|
449
|
-
"entrypoints": [
|
|
450
|
-
"arcane-os"
|
|
451
|
-
],
|
|
452
|
-
"primaryImport": "arcane-os",
|
|
453
|
-
"group": "Workspace, doctor, repository, and server",
|
|
454
|
-
"summary": "Performs a read-only Microsoft NT assessment of the managed ArcaneOllama service and reports unsupported hosts honestly.",
|
|
455
|
-
"availability": "Node; Microsoft NT managed-service assessment",
|
|
456
|
-
"protocol": "Node ESM",
|
|
457
|
-
"normalization": "SDK-normalized inputs, errors, events, and documented result"
|
|
458
|
-
},
|
|
459
|
-
{
|
|
460
|
-
"id": "root:authenticateAppReleaseAuthority",
|
|
461
|
-
"name": "authenticateAppReleaseAuthority",
|
|
462
|
-
"displayName": "authenticateAppReleaseAuthority()",
|
|
463
|
-
"kind": "function",
|
|
464
|
-
"signature": "async authenticateAppReleaseAuthority(receipt, { releaseRoot, expectedPackageConfig, expectedDescriptor, signal }={})",
|
|
465
|
-
"entrypoints": [
|
|
466
|
-
"arcane-os",
|
|
467
|
-
"arcane-os/packager"
|
|
468
|
-
],
|
|
469
|
-
"primaryImport": "arcane-os",
|
|
470
|
-
"group": "Packaging and release bundles",
|
|
471
|
-
"summary": "Authenticates that a same-process app release receipt also carries authored descriptor authority for external delivery.",
|
|
472
|
-
"availability": "Node",
|
|
473
|
-
"protocol": "SDK packager, receipt, or deterministic bundle contract",
|
|
474
|
-
"normalization": "Normalized SDK validation and receipt; canonical archive/release bytes preserved"
|
|
475
|
-
},
|
|
476
|
-
{
|
|
477
|
-
"id": "root:authenticateAppReleaseReceipt",
|
|
478
|
-
"name": "authenticateAppReleaseReceipt",
|
|
479
|
-
"displayName": "authenticateAppReleaseReceipt()",
|
|
480
|
-
"kind": "function",
|
|
481
|
-
"signature": "async authenticateAppReleaseReceipt(receipt, options={})",
|
|
482
|
-
"entrypoints": [
|
|
483
|
-
"arcane-os",
|
|
484
|
-
"arcane-os/packager"
|
|
485
|
-
],
|
|
486
|
-
"primaryImport": "arcane-os",
|
|
487
|
-
"group": "Packaging and release bundles",
|
|
488
|
-
"summary": "Authenticates a same-process verified application release receipt against its exact current filesystem state.",
|
|
489
|
-
"availability": "Node",
|
|
490
|
-
"protocol": "SDK packager, receipt, or deterministic bundle contract",
|
|
491
|
-
"normalization": "Normalized SDK validation and receipt; canonical archive/release bytes preserved"
|
|
492
|
-
},
|
|
493
|
-
{
|
|
494
|
-
"id": "root:authenticateNativeBuildPlan",
|
|
495
|
-
"name": "authenticateNativeBuildPlan",
|
|
496
|
-
"displayName": "authenticateNativeBuildPlan()",
|
|
497
|
-
"kind": "function",
|
|
498
|
-
"signature": "async authenticateNativeBuildPlan(plan, { expectedNativeBuilder, expectedTarget, signal, onEvent }={})",
|
|
499
|
-
"entrypoints": [
|
|
500
|
-
"arcane-os",
|
|
501
|
-
"arcane-os/native"
|
|
502
|
-
],
|
|
503
|
-
"primaryImport": "arcane-os",
|
|
504
|
-
"group": "Targets, native plans, and providers",
|
|
505
|
-
"summary": "Authenticates an immutable same-process native build plan and its bound receipts before execution.",
|
|
506
|
-
"availability": "Node; selected browser/native target or provider as documented",
|
|
507
|
-
"protocol": "arcane-target-adapter/1, arcane-native-build-plan/1, or provider protocol",
|
|
508
|
-
"normalization": "Normalized plan/admission/receipt; target-specific artifact detail preserved"
|
|
509
|
-
},
|
|
510
|
-
{
|
|
511
|
-
"id": "root:authenticateRuntimeReceipt",
|
|
512
|
-
"name": "authenticateRuntimeReceipt",
|
|
513
|
-
"displayName": "authenticateRuntimeReceipt()",
|
|
514
|
-
"kind": "function",
|
|
515
|
-
"signature": "async authenticateRuntimeReceipt(receipt, { runtimeRoot=path.join(sdkRoot, 'runtime'), signal }={})",
|
|
516
|
-
"entrypoints": [
|
|
517
|
-
"arcane-os"
|
|
518
|
-
],
|
|
519
|
-
"primaryImport": "arcane-os",
|
|
520
|
-
"group": "Runtime and app descriptors",
|
|
521
|
-
"summary": "Authenticates a same-process runtime receipt against the exact runtime root and current file identities.",
|
|
522
|
-
"availability": "Node",
|
|
523
|
-
"protocol": "Node ESM",
|
|
524
|
-
"normalization": "SDK-normalized inputs, errors, events, and documented result"
|
|
525
|
-
},
|
|
526
|
-
{
|
|
527
|
-
"id": "root:authenticateSharedPayloadSnapshot",
|
|
528
|
-
"name": "authenticateSharedPayloadSnapshot",
|
|
529
|
-
"displayName": "authenticateSharedPayloadSnapshot()",
|
|
530
|
-
"kind": "function",
|
|
531
|
-
"signature": "async authenticateSharedPayloadSnapshot(receipt, options={})",
|
|
532
|
-
"entrypoints": [
|
|
533
|
-
"arcane-os",
|
|
534
|
-
"arcane-os/packager"
|
|
535
|
-
],
|
|
536
|
-
"primaryImport": "arcane-os",
|
|
537
|
-
"group": "Packaging and release bundles",
|
|
538
|
-
"summary": "Authenticates the same-process immutable shared-payload snapshot consumed by app packaging.",
|
|
539
|
-
"availability": "Node",
|
|
540
|
-
"protocol": "SDK packager, receipt, or deterministic bundle contract",
|
|
541
|
-
"normalization": "Normalized SDK validation and receipt; canonical archive/release bytes preserved"
|
|
542
|
-
},
|
|
543
|
-
{
|
|
544
|
-
"id": "root:buildApplication",
|
|
545
|
-
"name": "buildApplication",
|
|
546
|
-
"displayName": "buildApplication()",
|
|
547
|
-
"kind": "function",
|
|
548
|
-
"signature": "async buildApplication(options={})",
|
|
549
|
-
"entrypoints": [
|
|
550
|
-
"arcane-os",
|
|
551
|
-
"arcane-os/toolchain"
|
|
552
|
-
],
|
|
553
|
-
"primaryImport": "arcane-os",
|
|
554
|
-
"group": "Headless toolchain operations",
|
|
555
|
-
"summary": "Builds and retained-verifies one explicitly selected native target through one paired provider.",
|
|
556
|
-
"availability": "Node; selected operation may produce browser or native output",
|
|
557
|
-
"protocol": "Shared headless operation API + arcane-cli-events/1",
|
|
558
|
-
"normalization": "SDK-normalized inputs, errors, events, and documented result"
|
|
559
|
-
},
|
|
560
|
-
{
|
|
561
|
-
"id": "root:buildTarget",
|
|
562
|
-
"name": "buildTarget",
|
|
563
|
-
"displayName": "buildTarget()",
|
|
564
|
-
"kind": "function",
|
|
565
|
-
"signature": "async buildTarget(options={})",
|
|
566
|
-
"entrypoints": [
|
|
567
|
-
"arcane-os",
|
|
568
|
-
"arcane-os/targets"
|
|
569
|
-
],
|
|
570
|
-
"primaryImport": "arcane-os",
|
|
571
|
-
"group": "Targets, native plans, and providers",
|
|
572
|
-
"summary": "Invokes one target adapter build with explicit app, target, and artifact inputs.",
|
|
573
|
-
"availability": "Node; selected browser/native target or provider as documented",
|
|
574
|
-
"protocol": "arcane-target-adapter/1, arcane-native-build-plan/1, or provider protocol",
|
|
575
|
-
"normalization": "Normalized plan/admission/receipt; target-specific artifact detail preserved"
|
|
576
|
-
},
|
|
577
|
-
{
|
|
578
|
-
"id": "root:bumpVersion",
|
|
579
|
-
"name": "bumpVersion",
|
|
580
|
-
"displayName": "bumpVersion()",
|
|
581
|
-
"kind": "function",
|
|
582
|
-
"signature": "async bumpVersion(options)",
|
|
583
|
-
"entrypoints": [
|
|
584
|
-
"arcane-os/packager"
|
|
585
|
-
],
|
|
586
|
-
"primaryImport": "arcane-os/packager",
|
|
587
|
-
"group": "Packaging and release bundles",
|
|
588
|
-
"summary": "Updates one selected app version with a validated semantic-version bump through the packager boundary.",
|
|
589
|
-
"availability": "Node",
|
|
590
|
-
"protocol": "SDK packager, receipt, or deterministic bundle contract",
|
|
591
|
-
"normalization": "Normalized SDK validation and receipt; canonical archive/release bytes preserved"
|
|
592
|
-
},
|
|
593
|
-
{
|
|
594
|
-
"id": "root:bundleApplication",
|
|
595
|
-
"name": "bundleApplication",
|
|
596
|
-
"displayName": "bundleApplication()",
|
|
597
|
-
"kind": "function",
|
|
598
|
-
"signature": "async bundleApplication(options={})",
|
|
599
|
-
"entrypoints": [
|
|
600
|
-
"arcane-os",
|
|
601
|
-
"arcane-os/toolchain"
|
|
602
|
-
],
|
|
603
|
-
"primaryImport": "arcane-os",
|
|
604
|
-
"group": "Headless toolchain operations",
|
|
605
|
-
"summary": "Creates one deterministic external application bundle from one authenticated packaged release.",
|
|
606
|
-
"availability": "Node; selected operation may produce browser or native output",
|
|
607
|
-
"protocol": "Shared headless operation API + arcane-cli-events/1",
|
|
608
|
-
"normalization": "SDK-normalized inputs, errors, events, and documented result"
|
|
609
|
-
},
|
|
610
|
-
{
|
|
611
|
-
"id": "root:checkApplication",
|
|
612
|
-
"name": "checkApplication",
|
|
613
|
-
"displayName": "checkApplication()",
|
|
614
|
-
"kind": "function",
|
|
615
|
-
"signature": "async checkApplication(options={})",
|
|
616
|
-
"entrypoints": [
|
|
617
|
-
"arcane-os",
|
|
618
|
-
"arcane-os/toolchain"
|
|
619
|
-
],
|
|
620
|
-
"primaryImport": "arcane-os",
|
|
621
|
-
"group": "Headless toolchain operations",
|
|
622
|
-
"summary": "Runs the selected application or integrated shared validation boundary.",
|
|
623
|
-
"availability": "Node; selected operation may produce browser or native output",
|
|
624
|
-
"protocol": "Shared headless operation API + arcane-cli-events/1",
|
|
625
|
-
"normalization": "SDK-normalized inputs, errors, events, and documented result"
|
|
626
|
-
},
|
|
627
|
-
{
|
|
628
|
-
"id": "root:CLI_EVENT_PROTOCOL",
|
|
629
|
-
"name": "CLI_EVENT_PROTOCOL",
|
|
630
|
-
"displayName": "CLI_EVENT_PROTOCOL",
|
|
631
|
-
"kind": "constant",
|
|
632
|
-
"signature": "const CLI_EVENT_PROTOCOL",
|
|
633
|
-
"entrypoints": [
|
|
634
|
-
"arcane-os"
|
|
635
|
-
],
|
|
636
|
-
"primaryImport": "arcane-os",
|
|
637
|
-
"group": "Identity and protocol constants",
|
|
638
|
-
"summary": "Version identifier for normalized CLI JSON and NDJSON event envelopes.",
|
|
639
|
-
"availability": "Node",
|
|
640
|
-
"protocol": "Node ESM",
|
|
641
|
-
"normalization": "Exact immutable SDK value"
|
|
642
|
-
},
|
|
643
|
-
{
|
|
644
|
-
"id": "root:CLI_NAME",
|
|
645
|
-
"name": "CLI_NAME",
|
|
646
|
-
"displayName": "CLI_NAME",
|
|
647
|
-
"kind": "constant",
|
|
648
|
-
"signature": "const CLI_NAME",
|
|
649
|
-
"entrypoints": [
|
|
650
|
-
"arcane-os"
|
|
651
|
-
],
|
|
652
|
-
"primaryImport": "arcane-os",
|
|
653
|
-
"group": "Identity and protocol constants",
|
|
654
|
-
"summary": "Primary command name presented by the SDK.",
|
|
655
|
-
"availability": "Node",
|
|
656
|
-
"protocol": "Node ESM",
|
|
657
|
-
"normalization": "Exact immutable SDK value"
|
|
658
|
-
},
|
|
659
|
-
{
|
|
660
|
-
"id": "root:createApplication",
|
|
661
|
-
"name": "createApplication",
|
|
662
|
-
"displayName": "createApplication()",
|
|
663
|
-
"kind": "function",
|
|
664
|
-
"signature": "async createApplication(options={})",
|
|
665
|
-
"entrypoints": [
|
|
666
|
-
"arcane-os",
|
|
667
|
-
"arcane-os/toolchain"
|
|
668
|
-
],
|
|
669
|
-
"primaryImport": "arcane-os",
|
|
670
|
-
"group": "Headless toolchain operations",
|
|
671
|
-
"summary": "Creates one new external application workspace through the shared headless toolchain.",
|
|
672
|
-
"availability": "Node; selected operation may produce browser or native output",
|
|
673
|
-
"protocol": "Shared headless operation API + arcane-cli-events/1",
|
|
674
|
-
"normalization": "SDK-normalized inputs, errors, events, and documented result"
|
|
675
|
-
},
|
|
676
|
-
{
|
|
677
|
-
"id": "root:createAppReleaseBundle",
|
|
678
|
-
"name": "createAppReleaseBundle",
|
|
679
|
-
"displayName": "createAppReleaseBundle()",
|
|
680
|
-
"kind": "function",
|
|
681
|
-
"signature": "async createAppReleaseBundle({ receipt, releaseRoot, outputPath, overwrite=false, signal, onEvent }={})",
|
|
682
|
-
"entrypoints": [
|
|
683
|
-
"arcane-os",
|
|
684
|
-
"arcane-os/release-bundle"
|
|
685
|
-
],
|
|
686
|
-
"primaryImport": "arcane-os",
|
|
687
|
-
"group": "Packaging and release bundles",
|
|
688
|
-
"summary": "Writes one deterministic USTAR+gzip external application bundle from an authenticated authored release receipt.",
|
|
689
|
-
"availability": "Node",
|
|
690
|
-
"protocol": "SDK packager, receipt, or deterministic bundle contract",
|
|
691
|
-
"normalization": "Normalized SDK validation and receipt; canonical archive/release bytes preserved"
|
|
692
|
-
},
|
|
693
|
-
{
|
|
694
|
-
"id": "root:createCanonicalUstarHeader",
|
|
695
|
-
"name": "createCanonicalUstarHeader",
|
|
696
|
-
"displayName": "createCanonicalUstarHeader()",
|
|
697
|
-
"kind": "function",
|
|
698
|
-
"signature": "createCanonicalUstarHeader(entryPath, size)",
|
|
699
|
-
"entrypoints": [
|
|
700
|
-
"arcane-os",
|
|
701
|
-
"arcane-os/release-bundle"
|
|
702
|
-
],
|
|
703
|
-
"primaryImport": "arcane-os",
|
|
704
|
-
"group": "Packaging and release bundles",
|
|
705
|
-
"summary": "Builds the exact 512-byte canonical USTAR header for one validated bundle entry.",
|
|
706
|
-
"availability": "Node",
|
|
707
|
-
"protocol": "SDK packager, receipt, or deterministic bundle contract",
|
|
708
|
-
"normalization": "Normalized SDK validation and receipt; canonical archive/release bytes preserved"
|
|
709
|
-
},
|
|
710
|
-
{
|
|
711
|
-
"id": "root:createNativeBuildPlan",
|
|
712
|
-
"name": "createNativeBuildPlan",
|
|
713
|
-
"displayName": "createNativeBuildPlan()",
|
|
714
|
-
"kind": "function",
|
|
715
|
-
"signature": "async createNativeBuildPlan({ nativeBuilder, toolchainRoot, toolchainReceipt, appReleaseRoot, appReleaseReceipt, appDescriptor, dependencyReleases=[], providerGeneration, minimumCoreVersion, protectedRoots=[], outputRoot, targetRequest, signal, onEvent }={})",
|
|
716
|
-
"entrypoints": [
|
|
717
|
-
"arcane-os",
|
|
718
|
-
"arcane-os/native"
|
|
719
|
-
],
|
|
720
|
-
"primaryImport": "arcane-os",
|
|
721
|
-
"group": "Targets, native plans, and providers",
|
|
722
|
-
"summary": "Creates one immutable, authenticated, single-attempt native plan binding app, dependencies, toolchain, request, and output roots.",
|
|
723
|
-
"availability": "Node; selected browser/native target or provider as documented",
|
|
724
|
-
"protocol": "arcane-target-adapter/1, arcane-native-build-plan/1, or provider protocol",
|
|
725
|
-
"normalization": "Normalized plan/admission/receipt; target-specific artifact detail preserved"
|
|
726
|
-
},
|
|
727
|
-
{
|
|
728
|
-
"id": "root:createNativeTargetAdapter",
|
|
729
|
-
"name": "createNativeTargetAdapter",
|
|
730
|
-
"displayName": "createNativeTargetAdapter()",
|
|
731
|
-
"kind": "function",
|
|
732
|
-
"signature": "createNativeTargetAdapter({targetId, nativeBuilder}={})",
|
|
733
|
-
"entrypoints": [
|
|
734
|
-
"arcane-os",
|
|
735
|
-
"arcane-os/targets"
|
|
736
|
-
],
|
|
737
|
-
"primaryImport": "arcane-os",
|
|
738
|
-
"group": "Targets, native plans, and providers",
|
|
739
|
-
"summary": "Adapts one validated native builder to the common target-adapter contract.",
|
|
740
|
-
"availability": "Node; selected browser/native target or provider as documented",
|
|
741
|
-
"protocol": "arcane-target-adapter/1, arcane-native-build-plan/1, or provider protocol",
|
|
742
|
-
"normalization": "Normalized plan/admission/receipt; target-specific artifact detail preserved"
|
|
743
|
-
},
|
|
744
|
-
{
|
|
745
|
-
"id": "root:createReporter",
|
|
746
|
-
"name": "createReporter",
|
|
747
|
-
"displayName": "createReporter()",
|
|
748
|
-
"kind": "function",
|
|
749
|
-
"signature": "createReporter({ command, output='human', stdout=process.stdout, stderr=process.stderr, operationId=randomUUID(), clock=()=>new Date() }={})",
|
|
750
|
-
"entrypoints": [
|
|
751
|
-
"arcane-os",
|
|
752
|
-
"arcane-os/events"
|
|
753
|
-
],
|
|
754
|
-
"primaryImport": "arcane-os",
|
|
755
|
-
"group": "Events, processes, and testing",
|
|
756
|
-
"summary": "Creates the ordered CLI reporter that normalizes accepted, progress, terminal, JSON, and NDJSON event delivery.",
|
|
757
|
-
"availability": "Node",
|
|
758
|
-
"protocol": "arcane-cli-events/1",
|
|
759
|
-
"normalization": "SDK event/error/report normalization"
|
|
760
|
-
},
|
|
761
|
-
{
|
|
762
|
-
"id": "root:createToolchain",
|
|
763
|
-
"name": "createToolchain",
|
|
764
|
-
"displayName": "createToolchain()",
|
|
765
|
-
"kind": "function",
|
|
766
|
-
"signature": "createToolchain(defaults={})",
|
|
767
|
-
"entrypoints": [
|
|
768
|
-
"arcane-os",
|
|
769
|
-
"arcane-os/toolchain"
|
|
770
|
-
],
|
|
771
|
-
"primaryImport": "arcane-os",
|
|
772
|
-
"group": "Headless toolchain operations",
|
|
773
|
-
"summary": "Returns a frozen convenience object that applies shared defaults to every headless application operation.",
|
|
774
|
-
"availability": "Node; selected operation may produce browser or native output",
|
|
775
|
-
"protocol": "Shared headless operation API + arcane-cli-events/1",
|
|
776
|
-
"normalization": "SDK-normalized inputs, errors, events, and documented result"
|
|
777
|
-
},
|
|
778
|
-
{
|
|
779
|
-
"id": "root:createWorkspace",
|
|
780
|
-
"name": "createWorkspace",
|
|
781
|
-
"displayName": "createWorkspace()",
|
|
782
|
-
"kind": "function",
|
|
783
|
-
"signature": "async createWorkspace({ targetPath, appId, displayName, target='browser', initializeGit=false, signal, onEvent })",
|
|
784
|
-
"entrypoints": [
|
|
785
|
-
"arcane-os"
|
|
786
|
-
],
|
|
787
|
-
"primaryImport": "arcane-os",
|
|
788
|
-
"group": "Workspace, doctor, repository, and server",
|
|
789
|
-
"summary": "Scaffolds one new external repository-shaped workspace and one selected application.",
|
|
790
|
-
"availability": "Node",
|
|
791
|
-
"protocol": "Node ESM",
|
|
792
|
-
"normalization": "SDK-normalized inputs, errors, events, and documented result"
|
|
793
|
-
},
|
|
794
|
-
{
|
|
795
|
-
"id": "root:default",
|
|
796
|
-
"name": "default",
|
|
797
|
-
"displayName": "default()",
|
|
798
|
-
"kind": "function",
|
|
799
|
-
"signature": "default(name, optionsOrCallback, maybeCallback)",
|
|
800
|
-
"entrypoints": [
|
|
801
|
-
"arcane-os/testing"
|
|
802
|
-
],
|
|
803
|
-
"primaryImport": "arcane-os/testing",
|
|
804
|
-
"group": "Events, processes, and testing",
|
|
805
|
-
"summary": "Default-export alias of the public `test` registration function.",
|
|
806
|
-
"availability": "Node",
|
|
807
|
-
"protocol": "Node ESM / owned process or test lifecycle",
|
|
808
|
-
"normalization": "SDK event/error/report normalization"
|
|
809
|
-
},
|
|
810
|
-
{
|
|
811
|
-
"id": "root:DEFAULT_TEST_TIMEOUT_MS",
|
|
812
|
-
"name": "DEFAULT_TEST_TIMEOUT_MS",
|
|
813
|
-
"displayName": "DEFAULT_TEST_TIMEOUT_MS",
|
|
814
|
-
"kind": "constant",
|
|
815
|
-
"signature": "const DEFAULT_TEST_TIMEOUT_MS",
|
|
816
|
-
"entrypoints": [
|
|
817
|
-
"arcane-os",
|
|
818
|
-
"arcane-os/testing"
|
|
819
|
-
],
|
|
820
|
-
"primaryImport": "arcane-os",
|
|
821
|
-
"group": "Events, processes, and testing",
|
|
822
|
-
"summary": "Default timeout applied by the public isolated test API.",
|
|
823
|
-
"availability": "Node",
|
|
824
|
-
"protocol": "Node ESM / owned process or test lifecycle",
|
|
825
|
-
"normalization": "Exact immutable SDK value"
|
|
826
|
-
},
|
|
827
|
-
{
|
|
828
|
-
"id": "root:describeTargets",
|
|
829
|
-
"name": "describeTargets",
|
|
830
|
-
"displayName": "describeTargets()",
|
|
831
|
-
"kind": "function",
|
|
832
|
-
"signature": "async describeTargets(options={})",
|
|
833
|
-
"entrypoints": [
|
|
834
|
-
"arcane-os",
|
|
835
|
-
"arcane-os/toolchain"
|
|
836
|
-
],
|
|
837
|
-
"primaryImport": "arcane-os",
|
|
838
|
-
"group": "Headless toolchain operations",
|
|
839
|
-
"summary": "Returns the normalized target catalog through the headless operation lifecycle.",
|
|
840
|
-
"availability": "Node; selected operation may produce browser or native output",
|
|
841
|
-
"protocol": "Shared headless operation API + arcane-cli-events/1",
|
|
842
|
-
"normalization": "SDK-normalized inputs, errors, events, and documented result"
|
|
843
|
-
},
|
|
844
|
-
{
|
|
845
|
-
"id": "root:developApplication",
|
|
846
|
-
"name": "developApplication",
|
|
847
|
-
"displayName": "developApplication()",
|
|
848
|
-
"kind": "function",
|
|
849
|
-
"signature": "async developApplication(options={})",
|
|
850
|
-
"entrypoints": [
|
|
851
|
-
"arcane-os",
|
|
852
|
-
"arcane-os/toolchain"
|
|
853
|
-
],
|
|
854
|
-
"primaryImport": "arcane-os",
|
|
855
|
-
"group": "Headless toolchain operations",
|
|
856
|
-
"summary": "Starts one owned browser development server for the selected application.",
|
|
857
|
-
"availability": "Node; selected operation may produce browser or native output",
|
|
858
|
-
"protocol": "Shared headless operation API + arcane-cli-events/1",
|
|
859
|
-
"normalization": "SDK-normalized inputs, errors, events, and documented result"
|
|
860
|
-
},
|
|
861
|
-
{
|
|
862
|
-
"id": "root:discoverPackagerApps",
|
|
863
|
-
"name": "discoverPackagerApps",
|
|
864
|
-
"displayName": "discoverPackagerApps()",
|
|
865
|
-
"kind": "function",
|
|
866
|
-
"signature": "async discoverPackagerApps({workspaceRoot:requestedWorkspaceRoot})",
|
|
867
|
-
"entrypoints": [
|
|
868
|
-
"arcane-os"
|
|
869
|
-
],
|
|
870
|
-
"primaryImport": "arcane-os",
|
|
871
|
-
"group": "Packaging and release bundles",
|
|
872
|
-
"summary": "Root-entry alias for the packager-specific application discovery function.",
|
|
873
|
-
"availability": "Node",
|
|
874
|
-
"protocol": "SDK packager, receipt, or deterministic bundle contract",
|
|
875
|
-
"normalization": "Normalized SDK validation and receipt; canonical archive/release bytes preserved"
|
|
876
|
-
},
|
|
877
|
-
{
|
|
878
|
-
"id": "root:doctorApplication",
|
|
879
|
-
"name": "doctorApplication",
|
|
880
|
-
"displayName": "doctorApplication()",
|
|
881
|
-
"kind": "function",
|
|
882
|
-
"signature": "async doctorApplication(options={})",
|
|
883
|
-
"entrypoints": [
|
|
884
|
-
"arcane-os",
|
|
885
|
-
"arcane-os/toolchain"
|
|
886
|
-
],
|
|
887
|
-
"primaryImport": "arcane-os",
|
|
888
|
-
"group": "Workspace, doctor, repository, and server",
|
|
889
|
-
"summary": "Runs the read-only SDK/runtime/workspace and optional local-AI diagnostic operation.",
|
|
890
|
-
"availability": "Node",
|
|
891
|
-
"protocol": "Node ESM",
|
|
892
|
-
"normalization": "SDK-normalized inputs, errors, events, and documented result"
|
|
893
|
-
},
|
|
894
|
-
{
|
|
895
|
-
"id": "root:doctorNativeTarget",
|
|
896
|
-
"name": "doctorNativeTarget",
|
|
897
|
-
"displayName": "doctorNativeTarget()",
|
|
898
|
-
"kind": "function",
|
|
899
|
-
"signature": "async doctorNativeTarget(options={})",
|
|
900
|
-
"entrypoints": [
|
|
901
|
-
"arcane-os",
|
|
902
|
-
"arcane-os/toolchain"
|
|
903
|
-
],
|
|
904
|
-
"primaryImport": "arcane-os",
|
|
905
|
-
"group": "Targets, native plans, and providers",
|
|
906
|
-
"summary": "Loads and diagnoses one explicit native provider and target without building an application.",
|
|
907
|
-
"availability": "Node; selected browser/native target or provider as documented",
|
|
908
|
-
"protocol": "arcane-target-adapter/1, arcane-native-build-plan/1, or provider protocol",
|
|
909
|
-
"normalization": "Normalized plan/admission/receipt; target-specific artifact detail preserved"
|
|
910
|
-
},
|
|
911
|
-
{
|
|
912
|
-
"id": "root:ERROR_CODES",
|
|
913
|
-
"name": "ERROR_CODES",
|
|
914
|
-
"displayName": "ERROR_CODES",
|
|
915
|
-
"kind": "constant",
|
|
916
|
-
"signature": "const ERROR_CODES",
|
|
917
|
-
"entrypoints": [
|
|
918
|
-
"arcane-os"
|
|
919
|
-
],
|
|
920
|
-
"primaryImport": "arcane-os",
|
|
921
|
-
"group": "Errors",
|
|
922
|
-
"summary": "Frozen registry of stable SDK error-code strings.",
|
|
923
|
-
"availability": "Node",
|
|
924
|
-
"protocol": "Node ESM",
|
|
925
|
-
"normalization": "Exact immutable SDK value"
|
|
926
|
-
},
|
|
927
|
-
{
|
|
928
|
-
"id": "root:errorRecord",
|
|
929
|
-
"name": "errorRecord",
|
|
930
|
-
"displayName": "errorRecord()",
|
|
931
|
-
"kind": "function",
|
|
932
|
-
"signature": "errorRecord(error)",
|
|
933
|
-
"entrypoints": [
|
|
934
|
-
"arcane-os"
|
|
935
|
-
],
|
|
936
|
-
"primaryImport": "arcane-os",
|
|
937
|
-
"group": "Errors",
|
|
938
|
-
"summary": "Projects an error into the JSON-safe normalized public error record.",
|
|
939
|
-
"availability": "Node",
|
|
940
|
-
"protocol": "Node ESM",
|
|
941
|
-
"normalization": "ArcaneError and JSON-safe error normalization"
|
|
942
|
-
},
|
|
943
|
-
{
|
|
944
|
-
"id": "root:executeNativeBuildPlan",
|
|
945
|
-
"name": "executeNativeBuildPlan",
|
|
946
|
-
"displayName": "executeNativeBuildPlan()",
|
|
947
|
-
"kind": "function",
|
|
948
|
-
"signature": "async executeNativeBuildPlan(plan, { expectedNativeBuilder, expectedTarget, signal, onEvent }={})",
|
|
949
|
-
"entrypoints": [
|
|
950
|
-
"arcane-os",
|
|
951
|
-
"arcane-os/native"
|
|
952
|
-
],
|
|
953
|
-
"primaryImport": "arcane-os",
|
|
954
|
-
"group": "Targets, native plans, and providers",
|
|
955
|
-
"summary": "Consumes one authenticated single-attempt native plan through its bound builder and event/cancellation lifecycle.",
|
|
956
|
-
"availability": "Node; selected browser/native target or provider as documented",
|
|
957
|
-
"protocol": "arcane-target-adapter/1, arcane-native-build-plan/1, or provider protocol",
|
|
958
|
-
"normalization": "Normalized plan/admission/receipt; target-specific artifact detail preserved"
|
|
959
|
-
},
|
|
960
|
-
{
|
|
961
|
-
"id": "root:executeOperation",
|
|
962
|
-
"name": "executeOperation",
|
|
963
|
-
"displayName": "executeOperation()",
|
|
964
|
-
"kind": "function",
|
|
965
|
-
"signature": "async executeOperation(command, options={})",
|
|
966
|
-
"entrypoints": [
|
|
967
|
-
"arcane-os",
|
|
968
|
-
"arcane-os/toolchain"
|
|
969
|
-
],
|
|
970
|
-
"primaryImport": "arcane-os",
|
|
971
|
-
"group": "Headless toolchain operations",
|
|
972
|
-
"summary": "Dispatches one named headless SDK operation with normalized acceptance, events, cancellation, and failure.",
|
|
973
|
-
"availability": "Node; selected operation may produce browser or native output",
|
|
974
|
-
"protocol": "Shared headless operation API + arcane-cli-events/1",
|
|
975
|
-
"normalization": "SDK-normalized inputs, errors, events, and documented result"
|
|
976
|
-
},
|
|
977
|
-
{
|
|
978
|
-
"id": "root:fail",
|
|
979
|
-
"name": "fail",
|
|
980
|
-
"displayName": "fail()",
|
|
981
|
-
"kind": "function",
|
|
982
|
-
"signature": "fail(code, message, options)",
|
|
983
|
-
"entrypoints": [
|
|
984
|
-
"arcane-os"
|
|
985
|
-
],
|
|
986
|
-
"primaryImport": "arcane-os",
|
|
987
|
-
"group": "Errors",
|
|
988
|
-
"summary": "Throws a normalized `ArcaneError` with the supplied code and context.",
|
|
989
|
-
"availability": "Node",
|
|
990
|
-
"protocol": "Node ESM",
|
|
991
|
-
"normalization": "ArcaneError and JSON-safe error normalization"
|
|
992
|
-
},
|
|
993
|
-
{
|
|
994
|
-
"id": "root:getSdkRoot",
|
|
995
|
-
"name": "getSdkRoot",
|
|
996
|
-
"displayName": "getSdkRoot()",
|
|
997
|
-
"kind": "function",
|
|
998
|
-
"signature": "getSdkRoot()",
|
|
999
|
-
"entrypoints": [
|
|
1000
|
-
"arcane-os"
|
|
1001
|
-
],
|
|
1002
|
-
"primaryImport": "arcane-os",
|
|
1003
|
-
"group": "Runtime and app descriptors",
|
|
1004
|
-
"summary": "Returns the absolute installed SDK package root.",
|
|
1005
|
-
"availability": "Node",
|
|
1006
|
-
"protocol": "Node ESM",
|
|
1007
|
-
"normalization": "SDK-normalized inputs, errors, events, and documented result"
|
|
1008
|
-
},
|
|
1009
|
-
{
|
|
1010
|
-
"id": "root:getTargetAdapter",
|
|
1011
|
-
"name": "getTargetAdapter",
|
|
1012
|
-
"displayName": "getTargetAdapter()",
|
|
1013
|
-
"kind": "function",
|
|
1014
|
-
"signature": "getTargetAdapter(targetId)",
|
|
1015
|
-
"entrypoints": [
|
|
1016
|
-
"arcane-os",
|
|
1017
|
-
"arcane-os/targets"
|
|
1018
|
-
],
|
|
1019
|
-
"primaryImport": "arcane-os",
|
|
1020
|
-
"group": "Targets, native plans, and providers",
|
|
1021
|
-
"summary": "Returns the registered adapter for one exact target id or fails for an unknown target.",
|
|
1022
|
-
"availability": "Node; selected browser/native target or provider as documented",
|
|
1023
|
-
"protocol": "arcane-target-adapter/1, arcane-native-build-plan/1, or provider protocol",
|
|
1024
|
-
"normalization": "Normalized plan/admission/receipt; target-specific artifact detail preserved"
|
|
1025
|
-
},
|
|
1026
|
-
{
|
|
1027
|
-
"id": "root:incrementSemver",
|
|
1028
|
-
"name": "incrementSemver",
|
|
1029
|
-
"displayName": "incrementSemver()",
|
|
1030
|
-
"kind": "function",
|
|
1031
|
-
"signature": "incrementSemver(value, bump, preid)",
|
|
1032
|
-
"entrypoints": [
|
|
1033
|
-
"arcane-os/packager"
|
|
1034
|
-
],
|
|
1035
|
-
"primaryImport": "arcane-os/packager",
|
|
1036
|
-
"group": "Packaging and release bundles",
|
|
1037
|
-
"summary": "Returns a validated semantic version incremented by the requested bump and optional prerelease id.",
|
|
1038
|
-
"availability": "Node",
|
|
1039
|
-
"protocol": "SDK packager, receipt, or deterministic bundle contract",
|
|
1040
|
-
"normalization": "Normalized SDK validation and receipt; canonical archive/release bytes preserved"
|
|
1041
|
-
},
|
|
1042
|
-
{
|
|
1043
|
-
"id": "root:initializeApplication",
|
|
1044
|
-
"name": "initializeApplication",
|
|
1045
|
-
"displayName": "initializeApplication()",
|
|
1046
|
-
"kind": "function",
|
|
1047
|
-
"signature": "async initializeApplication(options={})",
|
|
1048
|
-
"entrypoints": [
|
|
1049
|
-
"arcane-os",
|
|
1050
|
-
"arcane-os/toolchain"
|
|
1051
|
-
],
|
|
1052
|
-
"primaryImport": "arcane-os",
|
|
1053
|
-
"group": "Workspace, doctor, repository, and server",
|
|
1054
|
-
"summary": "Initializes missing Arcane files for one app in an existing external or integrated workspace.",
|
|
1055
|
-
"availability": "Node",
|
|
1056
|
-
"protocol": "Node ESM",
|
|
1057
|
-
"normalization": "SDK-normalized inputs, errors, events, and documented result"
|
|
1058
|
-
},
|
|
1059
|
-
{
|
|
1060
|
-
"id": "root:initWorkspace",
|
|
1061
|
-
"name": "initWorkspace",
|
|
1062
|
-
"displayName": "initWorkspace()",
|
|
1063
|
-
"kind": "function",
|
|
1064
|
-
"signature": "async initWorkspace({ workspaceRoot=process.cwd(), appId, displayName, target='browser', signal, onEvent })",
|
|
1065
|
-
"entrypoints": [
|
|
1066
|
-
"arcane-os"
|
|
1067
|
-
],
|
|
1068
|
-
"primaryImport": "arcane-os",
|
|
1069
|
-
"group": "Workspace, doctor, repository, and server",
|
|
1070
|
-
"summary": "Adds one application scaffold to an existing workspace without overwriting incompatible files.",
|
|
1071
|
-
"availability": "Node",
|
|
1072
|
-
"protocol": "Node ESM",
|
|
1073
|
-
"normalization": "SDK-normalized inputs, errors, events, and documented result"
|
|
1074
|
-
},
|
|
1075
|
-
{
|
|
1076
|
-
"id": "root:inspectApp",
|
|
1077
|
-
"name": "inspectApp",
|
|
1078
|
-
"displayName": "inspectApp()",
|
|
1079
|
-
"kind": "function",
|
|
1080
|
-
"signature": "async inspectApp({workspaceRoot, appId})",
|
|
1081
|
-
"entrypoints": [
|
|
1082
|
-
"arcane-os",
|
|
1083
|
-
"arcane-os/packager"
|
|
1084
|
-
],
|
|
1085
|
-
"primaryImport": "arcane-os",
|
|
1086
|
-
"group": "Packaging and release bundles",
|
|
1087
|
-
"summary": "Loads and validates one packager app configuration, shared mappings, descriptor, and release inputs.",
|
|
1088
|
-
"availability": "Node",
|
|
1089
|
-
"protocol": "SDK packager, receipt, or deterministic bundle contract",
|
|
1090
|
-
"normalization": "Normalized SDK validation and receipt; canonical archive/release bytes preserved"
|
|
1091
|
-
},
|
|
1092
|
-
{
|
|
1093
|
-
"id": "root:inspectWorkspaceProfile",
|
|
1094
|
-
"name": "inspectWorkspaceProfile",
|
|
1095
|
-
"displayName": "inspectWorkspaceProfile()",
|
|
1096
|
-
"kind": "function",
|
|
1097
|
-
"signature": "async inspectWorkspaceProfile(workspaceRoot=process.cwd())",
|
|
1098
|
-
"entrypoints": [
|
|
1099
|
-
"arcane-os"
|
|
1100
|
-
],
|
|
1101
|
-
"primaryImport": "arcane-os",
|
|
1102
|
-
"group": "Workspace, doctor, repository, and server",
|
|
1103
|
-
"summary": "Classifies one canonical workspace as external or integrated and reports its fixed layout.",
|
|
1104
|
-
"availability": "Node",
|
|
1105
|
-
"protocol": "Node ESM",
|
|
1106
|
-
"normalization": "SDK-normalized inputs, errors, events, and documented result"
|
|
1107
|
-
},
|
|
1108
|
-
{
|
|
1109
|
-
"id": "root:INTEGRATED_TOOLCHAIN_PROTOCOL",
|
|
1110
|
-
"name": "INTEGRATED_TOOLCHAIN_PROTOCOL",
|
|
1111
|
-
"displayName": "INTEGRATED_TOOLCHAIN_PROTOCOL",
|
|
1112
|
-
"kind": "constant",
|
|
1113
|
-
"signature": "const INTEGRATED_TOOLCHAIN_PROTOCOL",
|
|
1114
|
-
"entrypoints": [
|
|
1115
|
-
"arcane-os",
|
|
1116
|
-
"arcane-os/integrated-provider"
|
|
1117
|
-
],
|
|
1118
|
-
"primaryImport": "arcane-os",
|
|
1119
|
-
"group": "Targets, native plans, and providers",
|
|
1120
|
-
"summary": "Protocol required from the fixed integrated shared-development provider.",
|
|
1121
|
-
"availability": "Node; selected browser/native target or provider as documented",
|
|
1122
|
-
"protocol": "arcane-target-adapter/1, arcane-native-build-plan/1, or provider protocol",
|
|
1123
|
-
"normalization": "Exact immutable SDK value"
|
|
1124
|
-
},
|
|
1125
|
-
{
|
|
1126
|
-
"id": "root:listTargets",
|
|
1127
|
-
"name": "listTargets",
|
|
1128
|
-
"displayName": "listTargets()",
|
|
1129
|
-
"kind": "function",
|
|
1130
|
-
"signature": "listTargets()",
|
|
1131
|
-
"entrypoints": [
|
|
1132
|
-
"arcane-os",
|
|
1133
|
-
"arcane-os/targets"
|
|
1134
|
-
],
|
|
1135
|
-
"primaryImport": "arcane-os",
|
|
1136
|
-
"group": "Targets, native plans, and providers",
|
|
1137
|
-
"summary": "Returns the frozen target descriptors without running an operation lifecycle.",
|
|
1138
|
-
"availability": "Node; selected browser/native target or provider as documented",
|
|
1139
|
-
"protocol": "arcane-target-adapter/1, arcane-native-build-plan/1, or provider protocol",
|
|
1140
|
-
"normalization": "Normalized plan/admission/receipt; target-specific artifact detail preserved"
|
|
1141
|
-
},
|
|
1142
|
-
{
|
|
1143
|
-
"id": "root:loadAppDescriptor",
|
|
1144
|
-
"name": "loadAppDescriptor",
|
|
1145
|
-
"displayName": "loadAppDescriptor()",
|
|
1146
|
-
"kind": "function",
|
|
1147
|
-
"signature": "async loadAppDescriptor({workspaceRoot, appRoot, appId, packageManifest})",
|
|
1148
|
-
"entrypoints": [
|
|
1149
|
-
"arcane-os"
|
|
1150
|
-
],
|
|
1151
|
-
"primaryImport": "arcane-os",
|
|
1152
|
-
"group": "Runtime and app descriptors",
|
|
1153
|
-
"summary": "Loads an authored schema-2 descriptor or a bounded legacy projection with explicit provenance.",
|
|
1154
|
-
"availability": "Node",
|
|
1155
|
-
"protocol": "Node ESM",
|
|
1156
|
-
"normalization": "SDK-normalized inputs, errors, events, and documented result"
|
|
1157
|
-
},
|
|
1158
|
-
{
|
|
1159
|
-
"id": "root:loadArcaneIntegratedProvider",
|
|
1160
|
-
"name": "loadArcaneIntegratedProvider",
|
|
1161
|
-
"displayName": "loadArcaneIntegratedProvider()",
|
|
1162
|
-
"kind": "function",
|
|
1163
|
-
"signature": "loadArcaneIntegratedProvider({ arcaneRoot, signal, onEvent, run=runProcess }={})",
|
|
1164
|
-
"entrypoints": [
|
|
1165
|
-
"arcane-os",
|
|
1166
|
-
"arcane-os/integrated-provider"
|
|
1167
|
-
],
|
|
1168
|
-
"primaryImport": "arcane-os",
|
|
1169
|
-
"group": "Targets, native plans, and providers",
|
|
1170
|
-
"summary": "Loads and authenticates the fixed Arcane-owned integrated development provider generation.",
|
|
1171
|
-
"availability": "Node; selected browser/native target or provider as documented",
|
|
1172
|
-
"protocol": "arcane-target-adapter/1, arcane-native-build-plan/1, or provider protocol",
|
|
1173
|
-
"normalization": "Normalized plan/admission/receipt; target-specific artifact detail preserved"
|
|
1174
|
-
},
|
|
1175
|
-
{
|
|
1176
|
-
"id": "root:loadArcaneNativeProvider",
|
|
1177
|
-
"name": "loadArcaneNativeProvider",
|
|
1178
|
-
"displayName": "loadArcaneNativeProvider()",
|
|
1179
|
-
"kind": "function",
|
|
1180
|
-
"signature": "loadArcaneNativeProvider({ arcaneRoot, target, inspect=lstat, canonicalize=realpath, readModule=readFile, importModule=specifier=>import(specifier), generationCache=providerGenerationCache, signal, onEvent }={})",
|
|
1181
|
-
"entrypoints": [
|
|
1182
|
-
"arcane-os",
|
|
1183
|
-
"arcane-os/native-provider"
|
|
1184
|
-
],
|
|
1185
|
-
"primaryImport": "arcane-os",
|
|
1186
|
-
"group": "Targets, native plans, and providers",
|
|
1187
|
-
"summary": "Loads the fixed provider for one target from an explicitly selected Arcane OS checkout and authenticates that provider generation for the current SDK process.",
|
|
1188
|
-
"availability": "Node; selected browser/native target or provider as documented",
|
|
1189
|
-
"protocol": "arcane-target-adapter/1, arcane-native-build-plan/1, or provider protocol",
|
|
1190
|
-
"normalization": "Normalized plan/admission/receipt; target-specific artifact detail preserved"
|
|
1191
|
-
},
|
|
1192
|
-
{
|
|
1193
|
-
"id": "root:loadArcanePortableProvider",
|
|
1194
|
-
"name": "loadArcanePortableProvider",
|
|
1195
|
-
"displayName": "loadArcanePortableProvider()",
|
|
1196
|
-
"kind": "function",
|
|
1197
|
-
"signature": "loadArcanePortableProvider(options={})",
|
|
1198
|
-
"entrypoints": [
|
|
1199
|
-
"arcane-os",
|
|
1200
|
-
"arcane-os/native-provider"
|
|
1201
|
-
],
|
|
1202
|
-
"primaryImport": "arcane-os",
|
|
1203
|
-
"group": "Targets, native plans, and providers",
|
|
1204
|
-
"summary": "Compatibility wrapper that loads the portable native provider.",
|
|
1205
|
-
"availability": "Node; selected browser/native target or provider as documented",
|
|
1206
|
-
"protocol": "arcane-target-adapter/1, arcane-native-build-plan/1, or provider protocol",
|
|
1207
|
-
"normalization": "Normalized plan/admission/receipt; target-specific artifact detail preserved"
|
|
1208
|
-
},
|
|
1209
|
-
{
|
|
1210
|
-
"id": "root:loadRuntimeRelease",
|
|
1211
|
-
"name": "loadRuntimeRelease",
|
|
1212
|
-
"displayName": "loadRuntimeRelease()",
|
|
1213
|
-
"kind": "function",
|
|
1214
|
-
"signature": "async loadRuntimeRelease({runtimeRoot=path.join(sdkRoot, 'runtime')}={})",
|
|
1215
|
-
"entrypoints": [
|
|
1216
|
-
"arcane-os"
|
|
1217
|
-
],
|
|
1218
|
-
"primaryImport": "arcane-os",
|
|
1219
|
-
"group": "Runtime and app descriptors",
|
|
1220
|
-
"summary": "Reads and structurally validates the synchronized runtime release manifest.",
|
|
1221
|
-
"availability": "Node",
|
|
1222
|
-
"protocol": "Node ESM",
|
|
1223
|
-
"normalization": "SDK-normalized inputs, errors, events, and documented result"
|
|
1224
|
-
},
|
|
1225
|
-
{
|
|
1226
|
-
"id": "root:materializeInstalledSdkRuntime",
|
|
1227
|
-
"name": "materializeInstalledSdkRuntime",
|
|
1228
|
-
"displayName": "materializeInstalledSdkRuntime()",
|
|
1229
|
-
"kind": "function",
|
|
1230
|
-
"signature": "async materializeInstalledSdkRuntime({workspaceRoot,sdkPackageSource,signal,onEvent}={})",
|
|
1231
|
-
"entrypoints": [
|
|
1232
|
-
"arcane-os"
|
|
1233
|
-
],
|
|
1234
|
-
"primaryImport": "arcane-os",
|
|
1235
|
-
"group": "Runtime and app descriptors",
|
|
1236
|
-
"summary": "Verifies the workspace's exact installed SDK runtime and browser runtime, then materializes their dynamic inventories.",
|
|
1237
|
-
"availability": "Node",
|
|
1238
|
-
"protocol": "Installed SDK runtime materialization",
|
|
1239
|
-
"normalization": "Canonical workspace and installed-package identity, verified runtime receipts, and a frozen materialization result"
|
|
1240
|
-
},
|
|
1241
|
-
{
|
|
1242
|
-
"id": "root:NATIVE_BUILD_PLAN_PROTOCOL",
|
|
1243
|
-
"name": "NATIVE_BUILD_PLAN_PROTOCOL",
|
|
1244
|
-
"displayName": "NATIVE_BUILD_PLAN_PROTOCOL",
|
|
1245
|
-
"kind": "constant",
|
|
1246
|
-
"signature": "const NATIVE_BUILD_PLAN_PROTOCOL",
|
|
1247
|
-
"entrypoints": [
|
|
1248
|
-
"arcane-os",
|
|
1249
|
-
"arcane-os/native"
|
|
1250
|
-
],
|
|
1251
|
-
"primaryImport": "arcane-os",
|
|
1252
|
-
"group": "Targets, native plans, and providers",
|
|
1253
|
-
"summary": "Protocol identifier for immutable authenticated native build plans.",
|
|
1254
|
-
"availability": "Node; selected browser/native target or provider as documented",
|
|
1255
|
-
"protocol": "arcane-target-adapter/1, arcane-native-build-plan/1, or provider protocol",
|
|
1256
|
-
"normalization": "Exact immutable SDK value"
|
|
1257
|
-
},
|
|
1258
|
-
{
|
|
1259
|
-
"id": "root:NATIVE_BUILDER_PROTOCOL",
|
|
1260
|
-
"name": "NATIVE_BUILDER_PROTOCOL",
|
|
1261
|
-
"displayName": "NATIVE_BUILDER_PROTOCOL",
|
|
1262
|
-
"kind": "constant",
|
|
1263
|
-
"signature": "const NATIVE_BUILDER_PROTOCOL",
|
|
1264
|
-
"entrypoints": [
|
|
1265
|
-
"arcane-os",
|
|
1266
|
-
"arcane-os/native"
|
|
1267
|
-
],
|
|
1268
|
-
"primaryImport": "arcane-os",
|
|
1269
|
-
"group": "Targets, native plans, and providers",
|
|
1270
|
-
"summary": "Protocol identifier required from injected native builders.",
|
|
1271
|
-
"availability": "Node; selected browser/native target or provider as documented",
|
|
1272
|
-
"protocol": "arcane-target-adapter/1, arcane-native-build-plan/1, or provider protocol",
|
|
1273
|
-
"normalization": "Exact immutable SDK value"
|
|
1274
|
-
},
|
|
1275
|
-
{
|
|
1276
|
-
"id": "root:normalizeError",
|
|
1277
|
-
"name": "normalizeError",
|
|
1278
|
-
"displayName": "normalizeError()",
|
|
1279
|
-
"kind": "function",
|
|
1280
|
-
"signature": "normalizeError(error, fallbackCode=ERROR_CODES.operationFailed)",
|
|
1281
|
-
"entrypoints": [
|
|
1282
|
-
"arcane-os"
|
|
1283
|
-
],
|
|
1284
|
-
"primaryImport": "arcane-os",
|
|
1285
|
-
"group": "Errors",
|
|
1286
|
-
"summary": "Converts an unknown thrown value into an `ArcaneError` while preserving an existing normalized error.",
|
|
1287
|
-
"availability": "Node",
|
|
1288
|
-
"protocol": "Node ESM",
|
|
1289
|
-
"normalization": "ArcaneError and JSON-safe error normalization"
|
|
1290
|
-
},
|
|
1291
|
-
{
|
|
1292
|
-
"id": "root:normalizeRelativePath",
|
|
1293
|
-
"name": "normalizeRelativePath",
|
|
1294
|
-
"displayName": "normalizeRelativePath()",
|
|
1295
|
-
"kind": "function",
|
|
1296
|
-
"signature": "normalizeRelativePath(value, label='path')",
|
|
1297
|
-
"entrypoints": [
|
|
1298
|
-
"arcane-os/packager"
|
|
1299
|
-
],
|
|
1300
|
-
"primaryImport": "arcane-os/packager",
|
|
1301
|
-
"group": "Packaging and release bundles",
|
|
1302
|
-
"summary": "Normalizes one portable repository-relative path and rejects traversal, aliases, links, and unsafe names.",
|
|
1303
|
-
"availability": "Node",
|
|
1304
|
-
"protocol": "SDK packager, receipt, or deterministic bundle contract",
|
|
1305
|
-
"normalization": "Normalized SDK validation and receipt; canonical archive/release bytes preserved"
|
|
1306
|
-
},
|
|
1307
|
-
{
|
|
1308
|
-
"id": "root:OUTPUT_MODES",
|
|
1309
|
-
"name": "OUTPUT_MODES",
|
|
1310
|
-
"displayName": "OUTPUT_MODES",
|
|
1311
|
-
"kind": "constant",
|
|
1312
|
-
"signature": "const OUTPUT_MODES",
|
|
1313
|
-
"entrypoints": [
|
|
1314
|
-
"arcane-os"
|
|
1315
|
-
],
|
|
1316
|
-
"primaryImport": "arcane-os",
|
|
1317
|
-
"group": "Identity and protocol constants",
|
|
1318
|
-
"summary": "Frozen supported CLI output modes: human, JSON, and NDJSON.",
|
|
1319
|
-
"availability": "Node",
|
|
1320
|
-
"protocol": "Node ESM",
|
|
1321
|
-
"normalization": "Exact immutable SDK value"
|
|
1322
|
-
},
|
|
1323
|
-
{
|
|
1324
|
-
"id": "root:packageApp",
|
|
1325
|
-
"name": "packageApp",
|
|
1326
|
-
"displayName": "packageApp()",
|
|
1327
|
-
"kind": "function",
|
|
1328
|
-
"signature": "async packageApp(options)",
|
|
1329
|
-
"entrypoints": [
|
|
1330
|
-
"arcane-os",
|
|
1331
|
-
"arcane-os/packager"
|
|
1332
|
-
],
|
|
1333
|
-
"primaryImport": "arcane-os",
|
|
1334
|
-
"group": "Packaging and release bundles",
|
|
1335
|
-
"summary": "Builds and authenticates one browser application release through the low-level packager API.",
|
|
1336
|
-
"availability": "Node",
|
|
1337
|
-
"protocol": "SDK packager, receipt, or deterministic bundle contract",
|
|
1338
|
-
"normalization": "Normalized SDK validation and receipt; canonical archive/release bytes preserved"
|
|
1339
|
-
},
|
|
1340
|
-
{
|
|
1341
|
-
"id": "root:packageApplication",
|
|
1342
|
-
"name": "packageApplication",
|
|
1343
|
-
"displayName": "packageApplication()",
|
|
1344
|
-
"kind": "function",
|
|
1345
|
-
"signature": "async packageApplication(options={})",
|
|
1346
|
-
"entrypoints": [
|
|
1347
|
-
"arcane-os",
|
|
1348
|
-
"arcane-os/toolchain"
|
|
1349
|
-
],
|
|
1350
|
-
"primaryImport": "arcane-os",
|
|
1351
|
-
"group": "Headless toolchain operations",
|
|
1352
|
-
"summary": "Runs the high-level package operation for one selected application.",
|
|
1353
|
-
"availability": "Node; selected operation may produce browser or native output",
|
|
1354
|
-
"protocol": "Shared headless operation API + arcane-cli-events/1",
|
|
1355
|
-
"normalization": "SDK-normalized inputs, errors, events, and documented result"
|
|
1356
|
-
},
|
|
1357
|
-
{
|
|
1358
|
-
"id": "root:PACKAGER_VERSION",
|
|
1359
|
-
"name": "PACKAGER_VERSION",
|
|
1360
|
-
"displayName": "PACKAGER_VERSION",
|
|
1361
|
-
"kind": "constant",
|
|
1362
|
-
"signature": "const PACKAGER_VERSION",
|
|
1363
|
-
"entrypoints": [
|
|
1364
|
-
"arcane-os/packager"
|
|
1365
|
-
],
|
|
1366
|
-
"primaryImport": "arcane-os/packager",
|
|
1367
|
-
"group": "Packaging and release bundles",
|
|
1368
|
-
"summary": "Builder identity written into schema-1 application release manifests.",
|
|
1369
|
-
"availability": "Node",
|
|
1370
|
-
"protocol": "SDK packager, receipt, or deterministic bundle contract",
|
|
1371
|
-
"normalization": "Exact immutable SDK value"
|
|
1372
|
-
},
|
|
1373
|
-
{
|
|
1374
|
-
"id": "packager:discoverApps",
|
|
1375
|
-
"name": "discoverApps",
|
|
1376
|
-
"displayName": "packager.discoverApps()",
|
|
1377
|
-
"kind": "function",
|
|
1378
|
-
"signature": "async discoverApps({workspaceRoot:requestedWorkspaceRoot})",
|
|
1379
|
-
"entrypoints": [
|
|
1380
|
-
"arcane-os/packager"
|
|
1381
|
-
],
|
|
1382
|
-
"primaryImport": "arcane-os/packager",
|
|
1383
|
-
"group": "Packaging and release bundles",
|
|
1384
|
-
"summary": "Discovers packager application configurations and release boundaries beneath one workspace root.",
|
|
1385
|
-
"availability": "Node",
|
|
1386
|
-
"protocol": "SDK packager, receipt, or deterministic bundle contract",
|
|
1387
|
-
"normalization": "Normalized SDK validation and receipt; canonical archive/release bytes preserved"
|
|
1388
|
-
},
|
|
1389
|
-
{
|
|
1390
|
-
"id": "root:parseSemver",
|
|
1391
|
-
"name": "parseSemver",
|
|
1392
|
-
"displayName": "parseSemver()",
|
|
1393
|
-
"kind": "function",
|
|
1394
|
-
"signature": "parseSemver(value)",
|
|
1395
|
-
"entrypoints": [
|
|
1396
|
-
"arcane-os/packager"
|
|
1397
|
-
],
|
|
1398
|
-
"primaryImport": "arcane-os/packager",
|
|
1399
|
-
"group": "Packaging and release bundles",
|
|
1400
|
-
"summary": "Parses one strict three-part semantic version with optional prerelease metadata.",
|
|
1401
|
-
"availability": "Node",
|
|
1402
|
-
"protocol": "SDK packager, receipt, or deterministic bundle contract",
|
|
1403
|
-
"normalization": "Normalized SDK validation and receipt; canonical archive/release bytes preserved"
|
|
1404
|
-
},
|
|
1405
|
-
{
|
|
1406
|
-
"id": "root:planApplication",
|
|
1407
|
-
"name": "planApplication",
|
|
1408
|
-
"displayName": "planApplication()",
|
|
1409
|
-
"kind": "function",
|
|
1410
|
-
"signature": "async planApplication(options={})",
|
|
1411
|
-
"entrypoints": [
|
|
1412
|
-
"arcane-os",
|
|
1413
|
-
"arcane-os/toolchain"
|
|
1414
|
-
],
|
|
1415
|
-
"primaryImport": "arcane-os",
|
|
1416
|
-
"group": "Headless toolchain operations",
|
|
1417
|
-
"summary": "Creates one authenticated native build plan without executing the provider build.",
|
|
1418
|
-
"availability": "Node; selected operation may produce browser or native output",
|
|
1419
|
-
"protocol": "Shared headless operation API + arcane-cli-events/1",
|
|
1420
|
-
"normalization": "SDK-normalized inputs, errors, events, and documented result"
|
|
1421
|
-
},
|
|
1422
|
-
{
|
|
1423
|
-
"id": "root:prepareNativeTarget",
|
|
1424
|
-
"name": "prepareNativeTarget",
|
|
1425
|
-
"displayName": "prepareNativeTarget()",
|
|
1426
|
-
"kind": "function",
|
|
1427
|
-
"signature": "async prepareNativeTarget(options={})",
|
|
1428
|
-
"entrypoints": [
|
|
1429
|
-
"arcane-os",
|
|
1430
|
-
"arcane-os/toolchain"
|
|
1431
|
-
],
|
|
1432
|
-
"primaryImport": "arcane-os",
|
|
1433
|
-
"group": "Targets, native plans, and providers",
|
|
1434
|
-
"summary": "Runs one provider toolchain preparation and returns its authenticated process-owned receipt.",
|
|
1435
|
-
"availability": "Node; selected browser/native target or provider as documented",
|
|
1436
|
-
"protocol": "arcane-target-adapter/1, arcane-native-build-plan/1, or provider protocol",
|
|
1437
|
-
"normalization": "Normalized plan/admission/receipt; target-specific artifact detail preserved"
|
|
1438
|
-
},
|
|
1439
|
-
{
|
|
1440
|
-
"id": "root:prepareSharedPayloadSnapshot",
|
|
1441
|
-
"name": "prepareSharedPayloadSnapshot",
|
|
1442
|
-
"displayName": "prepareSharedPayloadSnapshot()",
|
|
1443
|
-
"kind": "function",
|
|
1444
|
-
"signature": "async prepareSharedPayloadSnapshot({ workspaceRoot:requestedWorkspaceRoot, sharedPayloadIds, signal, onEvent }={})",
|
|
1445
|
-
"entrypoints": [
|
|
1446
|
-
"arcane-os",
|
|
1447
|
-
"arcane-os/packager"
|
|
1448
|
-
],
|
|
1449
|
-
"primaryImport": "arcane-os",
|
|
1450
|
-
"group": "Packaging and release bundles",
|
|
1451
|
-
"summary": "Verifies and snapshots the shared runtime/dependency payload once for reuse by one packaging generation.",
|
|
1452
|
-
"availability": "Node",
|
|
1453
|
-
"protocol": "SDK packager, receipt, or deterministic bundle contract",
|
|
1454
|
-
"normalization": "Normalized SDK validation and receipt; canonical archive/release bytes preserved"
|
|
1455
|
-
},
|
|
1456
|
-
{
|
|
1457
|
-
"id": "root:projectNativeDescriptor",
|
|
1458
|
-
"name": "projectNativeDescriptor",
|
|
1459
|
-
"displayName": "projectNativeDescriptor()",
|
|
1460
|
-
"kind": "function",
|
|
1461
|
-
"signature": "projectNativeDescriptor(descriptor, {source}={})",
|
|
1462
|
-
"entrypoints": [
|
|
1463
|
-
"arcane-os"
|
|
1464
|
-
],
|
|
1465
|
-
"primaryImport": "arcane-os",
|
|
1466
|
-
"group": "Runtime and app descriptors",
|
|
1467
|
-
"summary": "Projects the canonical app descriptor into the native registry shape consumed by paired builders.",
|
|
1468
|
-
"availability": "Node",
|
|
1469
|
-
"protocol": "Node ESM",
|
|
1470
|
-
"normalization": "SDK-normalized inputs, errors, events, and documented result"
|
|
1471
|
-
},
|
|
1472
|
-
{
|
|
1473
|
-
"id": "root:projectPackageManifest",
|
|
1474
|
-
"name": "projectPackageManifest",
|
|
1475
|
-
"displayName": "projectPackageManifest()",
|
|
1476
|
-
"kind": "function",
|
|
1477
|
-
"signature": "projectPackageManifest(descriptor)",
|
|
1478
|
-
"entrypoints": [
|
|
1479
|
-
"arcane-os"
|
|
1480
|
-
],
|
|
1481
|
-
"primaryImport": "arcane-os",
|
|
1482
|
-
"group": "Runtime and app descriptors",
|
|
1483
|
-
"summary": "Projects a schema-2 descriptor into the compatible schema-1 application package contract.",
|
|
1484
|
-
"availability": "Node",
|
|
1485
|
-
"protocol": "Node ESM",
|
|
1486
|
-
"normalization": "SDK-normalized inputs, errors, events, and documented result"
|
|
1487
|
-
},
|
|
1488
|
-
{
|
|
1489
|
-
"id": "root:readVerifiedAppReleaseFile",
|
|
1490
|
-
"name": "readVerifiedAppReleaseFile",
|
|
1491
|
-
"displayName": "readVerifiedAppReleaseFile()",
|
|
1492
|
-
"kind": "function",
|
|
1493
|
-
"signature": "async readVerifiedAppReleaseFile(receipt, { releaseRoot, relativePath, signal }={})",
|
|
1494
|
-
"entrypoints": [
|
|
1495
|
-
"arcane-os",
|
|
1496
|
-
"arcane-os/packager"
|
|
1497
|
-
],
|
|
1498
|
-
"primaryImport": "arcane-os",
|
|
1499
|
-
"group": "Packaging and release bundles",
|
|
1500
|
-
"summary": "Reads one bounded file through an authenticated app-release receipt and rechecks its identity and digest.",
|
|
1501
|
-
"availability": "Node",
|
|
1502
|
-
"protocol": "SDK packager, receipt, or deterministic bundle contract",
|
|
1503
|
-
"normalization": "Normalized SDK validation and receipt; canonical archive/release bytes preserved"
|
|
1504
|
-
},
|
|
1505
|
-
{
|
|
1506
|
-
"id": "root:readVerifiedRuntimeFile",
|
|
1507
|
-
"name": "readVerifiedRuntimeFile",
|
|
1508
|
-
"displayName": "readVerifiedRuntimeFile()",
|
|
1509
|
-
"kind": "function",
|
|
1510
|
-
"signature": "async readVerifiedRuntimeFile(receipt, { runtimeRoot=path.join(sdkRoot, 'runtime'), relativePath, signal }={})",
|
|
1511
|
-
"entrypoints": [
|
|
1512
|
-
"arcane-os"
|
|
1513
|
-
],
|
|
1514
|
-
"primaryImport": "arcane-os",
|
|
1515
|
-
"group": "Runtime and app descriptors",
|
|
1516
|
-
"summary": "Reads one bounded runtime file through an authenticated runtime receipt and rechecks its identity and digest.",
|
|
1517
|
-
"availability": "Node",
|
|
1518
|
-
"protocol": "Node ESM",
|
|
1519
|
-
"normalization": "SDK-normalized inputs, errors, events, and documented result"
|
|
1520
|
-
},
|
|
1521
|
-
{
|
|
1522
|
-
"id": "root:registeredTestCount",
|
|
1523
|
-
"name": "registeredTestCount",
|
|
1524
|
-
"displayName": "registeredTestCount()",
|
|
1525
|
-
"kind": "function",
|
|
1526
|
-
"signature": "registeredTestCount()",
|
|
1527
|
-
"entrypoints": [
|
|
1528
|
-
"arcane-os",
|
|
1529
|
-
"arcane-os/testing"
|
|
1530
|
-
],
|
|
1531
|
-
"primaryImport": "arcane-os",
|
|
1532
|
-
"group": "Events, processes, and testing",
|
|
1533
|
-
"summary": "Returns the number of tests registered in the current isolated test realm.",
|
|
1534
|
-
"availability": "Node",
|
|
1535
|
-
"protocol": "Node ESM / owned process or test lifecycle",
|
|
1536
|
-
"normalization": "SDK event/error/report normalization"
|
|
1537
|
-
},
|
|
1538
|
-
{
|
|
1539
|
-
"id": "root:RELEASE_MANIFEST_NAME",
|
|
1540
|
-
"name": "RELEASE_MANIFEST_NAME",
|
|
1541
|
-
"displayName": "RELEASE_MANIFEST_NAME",
|
|
1542
|
-
"kind": "constant",
|
|
1543
|
-
"signature": "const RELEASE_MANIFEST_NAME",
|
|
1544
|
-
"entrypoints": [
|
|
1545
|
-
"arcane-os/packager"
|
|
1546
|
-
],
|
|
1547
|
-
"primaryImport": "arcane-os/packager",
|
|
1548
|
-
"group": "Packaging and release bundles",
|
|
1549
|
-
"summary": "Canonical packaged application release manifest filename.",
|
|
1550
|
-
"availability": "Node",
|
|
1551
|
-
"protocol": "SDK packager, receipt, or deterministic bundle contract",
|
|
1552
|
-
"normalization": "Exact immutable SDK value"
|
|
1553
|
-
},
|
|
1554
|
-
{
|
|
1555
|
-
"id": "root:repositoryApplication",
|
|
1556
|
-
"name": "repositoryApplication",
|
|
1557
|
-
"displayName": "repositoryApplication()",
|
|
1558
|
-
"kind": "function",
|
|
1559
|
-
"signature": "async repositoryApplication(options={})",
|
|
1560
|
-
"entrypoints": [
|
|
1561
|
-
"arcane-os",
|
|
1562
|
-
"arcane-os/toolchain"
|
|
1563
|
-
],
|
|
1564
|
-
"primaryImport": "arcane-os",
|
|
1565
|
-
"group": "Headless toolchain operations",
|
|
1566
|
-
"summary": "Dispatches one selected repository status, pull, or push operation through the headless lifecycle.",
|
|
1567
|
-
"availability": "Node; selected operation may produce browser or native output",
|
|
1568
|
-
"protocol": "Shared headless operation API + arcane-cli-events/1",
|
|
1569
|
-
"normalization": "SDK-normalized inputs, errors, events, and documented result"
|
|
1570
|
-
},
|
|
1571
|
-
{
|
|
1572
|
-
"id": "root:repositoryPull",
|
|
1573
|
-
"name": "repositoryPull",
|
|
1574
|
-
"displayName": "repositoryPull()",
|
|
1575
|
-
"kind": "function",
|
|
1576
|
-
"signature": "async repositoryPull({ workspaceRoot=process.cwd(), signal, onEvent, run=runProcess }={})",
|
|
1577
|
-
"entrypoints": [
|
|
1578
|
-
"arcane-os"
|
|
1579
|
-
],
|
|
1580
|
-
"primaryImport": "arcane-os",
|
|
1581
|
-
"group": "Workspace, doctor, repository, and server",
|
|
1582
|
-
"summary": "Runs one fast-forward-only pull after proving the selected repository worktree is clean.",
|
|
1583
|
-
"availability": "Node; network-assisted Git",
|
|
1584
|
-
"protocol": "Node ESM",
|
|
1585
|
-
"normalization": "SDK-normalized inputs, errors, events, and documented result"
|
|
1586
|
-
},
|
|
1587
|
-
{
|
|
1588
|
-
"id": "root:repositoryPush",
|
|
1589
|
-
"name": "repositoryPush",
|
|
1590
|
-
"displayName": "repositoryPush()",
|
|
1591
|
-
"kind": "function",
|
|
1592
|
-
"signature": "async repositoryPush({ workspaceRoot=process.cwd(), signal, onEvent, run=runProcess }={})",
|
|
1593
|
-
"entrypoints": [
|
|
1594
|
-
"arcane-os"
|
|
1595
|
-
],
|
|
1596
|
-
"primaryImport": "arcane-os",
|
|
1597
|
-
"group": "Workspace, doctor, repository, and server",
|
|
1598
|
-
"summary": "Pushes the selected attached branch through the repository's configured remote and credentials.",
|
|
1599
|
-
"availability": "Node; network-assisted Git",
|
|
1600
|
-
"protocol": "Node ESM",
|
|
1601
|
-
"normalization": "SDK-normalized inputs, errors, events, and documented result"
|
|
1602
|
-
},
|
|
1603
|
-
{
|
|
1604
|
-
"id": "root:repositoryStatus",
|
|
1605
|
-
"name": "repositoryStatus",
|
|
1606
|
-
"displayName": "repositoryStatus()",
|
|
1607
|
-
"kind": "function",
|
|
1608
|
-
"signature": "async repositoryStatus({ workspaceRoot=process.cwd(), signal, onEvent, run=runProcess }={})",
|
|
1609
|
-
"entrypoints": [
|
|
1610
|
-
"arcane-os"
|
|
1611
|
-
],
|
|
1612
|
-
"primaryImport": "arcane-os",
|
|
1613
|
-
"group": "Workspace, doctor, repository, and server",
|
|
1614
|
-
"summary": "Reads one repository's branch and short worktree status through an owned child process.",
|
|
1615
|
-
"availability": "Node",
|
|
1616
|
-
"protocol": "Node ESM",
|
|
1617
|
-
"normalization": "SDK-normalized inputs, errors, events, and documented result"
|
|
1618
|
-
},
|
|
1619
|
-
{
|
|
1620
|
-
"id": "root:resolveNativeBuildOutputRoot",
|
|
1621
|
-
"name": "resolveNativeBuildOutputRoot",
|
|
1622
|
-
"displayName": "resolveNativeBuildOutputRoot()",
|
|
1623
|
-
"kind": "function",
|
|
1624
|
-
"signature": "resolveNativeBuildOutputRoot({target, workspaceMode, workspaceRoot, outputRoot}={})",
|
|
1625
|
-
"entrypoints": [
|
|
1626
|
-
"arcane-os",
|
|
1627
|
-
"arcane-os/toolchain"
|
|
1628
|
-
],
|
|
1629
|
-
"primaryImport": "arcane-os",
|
|
1630
|
-
"group": "Targets, native plans, and providers",
|
|
1631
|
-
"summary": "Resolves and validates one native output root, including integrated-checkout non-overlap.",
|
|
1632
|
-
"availability": "Node; selected browser/native target or provider as documented",
|
|
1633
|
-
"protocol": "arcane-target-adapter/1, arcane-native-build-plan/1, or provider protocol",
|
|
1634
|
-
"normalization": "Normalized plan/admission/receipt; target-specific artifact detail preserved"
|
|
1635
|
-
},
|
|
1636
|
-
{
|
|
1637
|
-
"id": "root:resolvePortableBuildOutputRoot",
|
|
1638
|
-
"name": "resolvePortableBuildOutputRoot",
|
|
1639
|
-
"displayName": "resolvePortableBuildOutputRoot()",
|
|
1640
|
-
"kind": "function",
|
|
1641
|
-
"signature": "resolvePortableBuildOutputRoot(options={})",
|
|
1642
|
-
"entrypoints": [
|
|
1643
|
-
"arcane-os",
|
|
1644
|
-
"arcane-os/toolchain"
|
|
1645
|
-
],
|
|
1646
|
-
"primaryImport": "arcane-os",
|
|
1647
|
-
"group": "Targets, native plans, and providers",
|
|
1648
|
-
"summary": "Portable-target compatibility wrapper for native output-root resolution.",
|
|
1649
|
-
"availability": "Node; selected browser/native target or provider as documented",
|
|
1650
|
-
"protocol": "arcane-target-adapter/1, arcane-native-build-plan/1, or provider protocol",
|
|
1651
|
-
"normalization": "Normalized plan/admission/receipt; target-specific artifact detail preserved"
|
|
1652
|
-
},
|
|
1653
|
-
{
|
|
1654
|
-
"id": "root:resolveWorkspace",
|
|
1655
|
-
"name": "resolveWorkspace",
|
|
1656
|
-
"displayName": "resolveWorkspace()",
|
|
1657
|
-
"kind": "function",
|
|
1658
|
-
"signature": "async resolveWorkspace({workspaceRoot=process.cwd(), appId}={})",
|
|
1659
|
-
"entrypoints": [
|
|
1660
|
-
"arcane-os"
|
|
1661
|
-
],
|
|
1662
|
-
"primaryImport": "arcane-os",
|
|
1663
|
-
"group": "Workspace, doctor, repository, and server",
|
|
1664
|
-
"summary": "Resolves one workspace profile and selected app into canonical SDK paths.",
|
|
1665
|
-
"availability": "Node",
|
|
1666
|
-
"protocol": "Node ESM",
|
|
1667
|
-
"normalization": "SDK-normalized inputs, errors, events, and documented result"
|
|
1668
|
-
},
|
|
1669
|
-
{
|
|
1670
|
-
"id": "root:ROOT_CONFIG_NAME",
|
|
1671
|
-
"name": "ROOT_CONFIG_NAME",
|
|
1672
|
-
"displayName": "ROOT_CONFIG_NAME",
|
|
1673
|
-
"kind": "constant",
|
|
1674
|
-
"signature": "const ROOT_CONFIG_NAME",
|
|
1675
|
-
"entrypoints": [
|
|
1676
|
-
"arcane-os/packager"
|
|
1677
|
-
],
|
|
1678
|
-
"primaryImport": "arcane-os/packager",
|
|
1679
|
-
"group": "Packaging and release bundles",
|
|
1680
|
-
"summary": "Canonical root packager configuration filename.",
|
|
1681
|
-
"availability": "Node",
|
|
1682
|
-
"protocol": "SDK packager, receipt, or deterministic bundle contract",
|
|
1683
|
-
"normalization": "Exact immutable SDK value"
|
|
1684
|
-
},
|
|
1685
|
-
{
|
|
1686
|
-
"id": "root:discoverApps",
|
|
1687
|
-
"name": "discoverApps",
|
|
1688
|
-
"displayName": "discoverApps()",
|
|
1689
|
-
"kind": "function",
|
|
1690
|
-
"signature": "async discoverApps(workspaceRoot=process.cwd())",
|
|
1691
|
-
"entrypoints": [
|
|
1692
|
-
"arcane-os"
|
|
1693
|
-
],
|
|
1694
|
-
"primaryImport": "arcane-os",
|
|
1695
|
-
"group": "Workspace, doctor, repository, and server",
|
|
1696
|
-
"summary": "Discovers application ids in one external or integrated workspace without selecting one.",
|
|
1697
|
-
"availability": "Node",
|
|
1698
|
-
"protocol": "Node ESM",
|
|
1699
|
-
"normalization": "SDK-normalized inputs, errors, events, and documented result"
|
|
1700
|
-
},
|
|
1701
|
-
{
|
|
1702
|
-
"id": "root:runApplication",
|
|
1703
|
-
"name": "runApplication",
|
|
1704
|
-
"displayName": "runApplication()",
|
|
1705
|
-
"kind": "function",
|
|
1706
|
-
"signature": "async runApplication(options={})",
|
|
1707
|
-
"entrypoints": [
|
|
1708
|
-
"arcane-os",
|
|
1709
|
-
"arcane-os/toolchain"
|
|
1710
|
-
],
|
|
1711
|
-
"primaryImport": "arcane-os",
|
|
1712
|
-
"group": "Headless toolchain operations",
|
|
1713
|
-
"summary": "Runs a browser app or performs the retained native build/verify/launch lifecycle for one target.",
|
|
1714
|
-
"availability": "Node; selected operation may produce browser or native output",
|
|
1715
|
-
"protocol": "Shared headless operation API + arcane-cli-events/1",
|
|
1716
|
-
"normalization": "SDK-normalized inputs, errors, events, and documented result"
|
|
1717
|
-
},
|
|
1718
|
-
{
|
|
1719
|
-
"id": "root:runDoctor",
|
|
1720
|
-
"name": "runDoctor",
|
|
1721
|
-
"displayName": "runDoctor()",
|
|
1722
|
-
"kind": "function",
|
|
1723
|
-
"signature": "async runDoctor({ workspaceRoot, appId, arcaneRoot, requireLocalAI=false, signal, onEvent, platform=process.platform, run=runProcess }={})",
|
|
1724
|
-
"entrypoints": [
|
|
1725
|
-
"arcane-os"
|
|
1726
|
-
],
|
|
1727
|
-
"primaryImport": "arcane-os",
|
|
1728
|
-
"group": "Workspace, doctor, repository, and server",
|
|
1729
|
-
"summary": "Runs the underlying read-only doctor checks and returns their normalized report.",
|
|
1730
|
-
"availability": "Node",
|
|
1731
|
-
"protocol": "Node ESM",
|
|
1732
|
-
"normalization": "SDK-normalized inputs, errors, events, and documented result"
|
|
1733
|
-
},
|
|
1734
|
-
{
|
|
1735
|
-
"id": "root:runProcess",
|
|
1736
|
-
"name": "runProcess",
|
|
1737
|
-
"displayName": "runProcess()",
|
|
1738
|
-
"kind": "function",
|
|
1739
|
-
"signature": "async runProcess(command, args=[], { cwd, env, signal, onEvent, heartbeatMs=5000, terminationGraceMs=DEFAULT_TERMINATION_GRACE_MS, allowNonzero=false, input }={})",
|
|
1740
|
-
"entrypoints": [
|
|
1741
|
-
"arcane-os"
|
|
1742
|
-
],
|
|
1743
|
-
"primaryImport": "arcane-os",
|
|
1744
|
-
"group": "Events, processes, and testing",
|
|
1745
|
-
"summary": "Runs one shell-free child command with bounded output tails, ordered stream events, heartbeats, and process-tree cancellation.",
|
|
1746
|
-
"availability": "Node",
|
|
1747
|
-
"protocol": "Node ESM / owned process or test lifecycle",
|
|
1748
|
-
"normalization": "SDK event/error/report normalization"
|
|
1749
|
-
},
|
|
1750
|
-
{
|
|
1751
|
-
"id": "root:runRegisteredTests",
|
|
1752
|
-
"name": "runRegisteredTests",
|
|
1753
|
-
"displayName": "runRegisteredTests()",
|
|
1754
|
-
"kind": "function",
|
|
1755
|
-
"signature": "async runRegisteredTests({signal, requireTests=true, onPhase}={})",
|
|
1756
|
-
"entrypoints": [
|
|
1757
|
-
"arcane-os",
|
|
1758
|
-
"arcane-os/testing"
|
|
1759
|
-
],
|
|
1760
|
-
"primaryImport": "arcane-os",
|
|
1761
|
-
"group": "Events, processes, and testing",
|
|
1762
|
-
"summary": "Executes the current isolated realm's registered tests once and returns the normalized Vanilla Test report.",
|
|
1763
|
-
"availability": "Node",
|
|
1764
|
-
"protocol": "Node ESM / owned process or test lifecycle",
|
|
1765
|
-
"normalization": "SDK event/error/report normalization"
|
|
1766
|
-
},
|
|
1767
|
-
{
|
|
1768
|
-
"id": "root:runRepositoryAction",
|
|
1769
|
-
"name": "runRepositoryAction",
|
|
1770
|
-
"displayName": "runRepositoryAction()",
|
|
1771
|
-
"kind": "function",
|
|
1772
|
-
"signature": "async runRepositoryAction(action, options={})",
|
|
1773
|
-
"entrypoints": [
|
|
1774
|
-
"arcane-os"
|
|
1775
|
-
],
|
|
1776
|
-
"primaryImport": "arcane-os",
|
|
1777
|
-
"group": "Workspace, doctor, repository, and server",
|
|
1778
|
-
"summary": "Selects and runs one repository action by name.",
|
|
1779
|
-
"availability": "Node",
|
|
1780
|
-
"protocol": "Node ESM",
|
|
1781
|
-
"normalization": "SDK-normalized inputs, errors, events, and documented result"
|
|
1782
|
-
},
|
|
1783
|
-
{
|
|
1784
|
-
"id": "root:runTarget",
|
|
1785
|
-
"name": "runTarget",
|
|
1786
|
-
"displayName": "runTarget()",
|
|
1787
|
-
"kind": "function",
|
|
1788
|
-
"signature": "async runTarget(options={})",
|
|
1789
|
-
"entrypoints": [
|
|
1790
|
-
"arcane-os",
|
|
1791
|
-
"arcane-os/targets"
|
|
1792
|
-
],
|
|
1793
|
-
"primaryImport": "arcane-os",
|
|
1794
|
-
"group": "Targets, native plans, and providers",
|
|
1795
|
-
"summary": "Invokes one target adapter run method and fails honestly when the artifact kind is not runnable.",
|
|
1796
|
-
"availability": "Node; selected browser/native target or provider as documented",
|
|
1797
|
-
"protocol": "arcane-target-adapter/1, arcane-native-build-plan/1, or provider protocol",
|
|
1798
|
-
"normalization": "Normalized plan/admission/receipt; target-specific artifact detail preserved"
|
|
1799
|
-
},
|
|
1800
|
-
{
|
|
1801
|
-
"id": "root:RUNTIME_ROOT",
|
|
1802
|
-
"name": "RUNTIME_ROOT",
|
|
1803
|
-
"displayName": "RUNTIME_ROOT",
|
|
1804
|
-
"kind": "constant",
|
|
1805
|
-
"signature": "const RUNTIME_ROOT",
|
|
1806
|
-
"entrypoints": [
|
|
1807
|
-
"arcane-os"
|
|
1808
|
-
],
|
|
1809
|
-
"primaryImport": "arcane-os",
|
|
1810
|
-
"group": "Identity and protocol constants",
|
|
1811
|
-
"summary": "Absolute installed SDK runtime directory for the current process.",
|
|
1812
|
-
"availability": "Node",
|
|
1813
|
-
"protocol": "Node ESM",
|
|
1814
|
-
"normalization": "Exact immutable SDK value"
|
|
1815
|
-
},
|
|
1816
|
-
{
|
|
1817
|
-
"id": "root:SDK_NAME",
|
|
1818
|
-
"name": "SDK_NAME",
|
|
1819
|
-
"displayName": "SDK_NAME",
|
|
1820
|
-
"kind": "constant",
|
|
1821
|
-
"signature": "const SDK_NAME",
|
|
1822
|
-
"entrypoints": [
|
|
1823
|
-
"arcane-os"
|
|
1824
|
-
],
|
|
1825
|
-
"primaryImport": "arcane-os",
|
|
1826
|
-
"group": "Identity and protocol constants",
|
|
1827
|
-
"summary": "Published npm package name.",
|
|
1828
|
-
"availability": "Node",
|
|
1829
|
-
"protocol": "Node ESM",
|
|
1830
|
-
"normalization": "Exact immutable SDK value"
|
|
1831
|
-
},
|
|
1832
|
-
{
|
|
1833
|
-
"id": "root:SDK_ROOT",
|
|
1834
|
-
"name": "SDK_ROOT",
|
|
1835
|
-
"displayName": "SDK_ROOT",
|
|
1836
|
-
"kind": "constant",
|
|
1837
|
-
"signature": "const SDK_ROOT",
|
|
1838
|
-
"entrypoints": [
|
|
1839
|
-
"arcane-os"
|
|
1840
|
-
],
|
|
1841
|
-
"primaryImport": "arcane-os",
|
|
1842
|
-
"group": "Identity and protocol constants",
|
|
1843
|
-
"summary": "Absolute installed package root for the current process.",
|
|
1844
|
-
"availability": "Node",
|
|
1845
|
-
"protocol": "Node ESM",
|
|
1846
|
-
"normalization": "Exact immutable SDK value"
|
|
1847
|
-
},
|
|
1848
|
-
{
|
|
1849
|
-
"id": "root:SDK_VERSION",
|
|
1850
|
-
"name": "SDK_VERSION",
|
|
1851
|
-
"displayName": "SDK_VERSION",
|
|
1852
|
-
"kind": "constant",
|
|
1853
|
-
"signature": "const SDK_VERSION",
|
|
1854
|
-
"entrypoints": [
|
|
1855
|
-
"arcane-os"
|
|
1856
|
-
],
|
|
1857
|
-
"primaryImport": "arcane-os",
|
|
1858
|
-
"group": "Identity and protocol constants",
|
|
1859
|
-
"summary": "Exact SDK package version.",
|
|
1860
|
-
"availability": "Node",
|
|
1861
|
-
"protocol": "Node ESM",
|
|
1862
|
-
"normalization": "Exact immutable SDK value"
|
|
1863
|
-
},
|
|
1864
|
-
{
|
|
1865
|
-
"id": "root:selectApp",
|
|
1866
|
-
"name": "selectApp",
|
|
1867
|
-
"displayName": "selectApp()",
|
|
1868
|
-
"kind": "function",
|
|
1869
|
-
"signature": "async selectApp(workspaceRoot=process.cwd(), appId)",
|
|
1870
|
-
"entrypoints": [
|
|
1871
|
-
"arcane-os"
|
|
1872
|
-
],
|
|
1873
|
-
"primaryImport": "arcane-os",
|
|
1874
|
-
"group": "Workspace, doctor, repository, and server",
|
|
1875
|
-
"summary": "Selects one exact app id, or requires an unambiguous single discovered application.",
|
|
1876
|
-
"availability": "Node",
|
|
1877
|
-
"protocol": "Node ESM",
|
|
1878
|
-
"normalization": "SDK-normalized inputs, errors, events, and documented result"
|
|
1879
|
-
},
|
|
1880
|
-
{
|
|
1881
|
-
"id": "root:startDevServer",
|
|
1882
|
-
"name": "startDevServer",
|
|
1883
|
-
"displayName": "startDevServer()",
|
|
1884
|
-
"kind": "function",
|
|
1885
|
-
"signature": "async startDevServer(options={})",
|
|
1886
|
-
"entrypoints": [
|
|
1887
|
-
"arcane-os"
|
|
1888
|
-
],
|
|
1889
|
-
"primaryImport": "arcane-os",
|
|
1890
|
-
"group": "Workspace, doctor, repository, and server",
|
|
1891
|
-
"summary": "Starts one bounded browser development server with exact runtime/app route mappings and an unguessable session capability.",
|
|
1892
|
-
"availability": "Node control plane; browser data plane",
|
|
1893
|
-
"protocol": "Node ESM",
|
|
1894
|
-
"normalization": "SDK-normalized inputs, errors, events, and documented result"
|
|
1895
|
-
},
|
|
1896
|
-
{
|
|
1897
|
-
"id": "root:TARGET_ADAPTER_PROTOCOL",
|
|
1898
|
-
"name": "TARGET_ADAPTER_PROTOCOL",
|
|
1899
|
-
"displayName": "TARGET_ADAPTER_PROTOCOL",
|
|
1900
|
-
"kind": "constant",
|
|
1901
|
-
"signature": "const TARGET_ADAPTER_PROTOCOL",
|
|
1902
|
-
"entrypoints": [
|
|
1903
|
-
"arcane-os"
|
|
1904
|
-
],
|
|
1905
|
-
"primaryImport": "arcane-os",
|
|
1906
|
-
"group": "Targets, native plans, and providers",
|
|
1907
|
-
"summary": "Protocol required from target adapter descriptors and implementations.",
|
|
1908
|
-
"availability": "Node; selected browser/native target or provider as documented",
|
|
1909
|
-
"protocol": "arcane-target-adapter/1, arcane-native-build-plan/1, or provider protocol",
|
|
1910
|
-
"normalization": "Exact immutable SDK value"
|
|
1911
|
-
},
|
|
1912
|
-
{
|
|
1913
|
-
"id": "root:TARGET_IDS",
|
|
1914
|
-
"name": "TARGET_IDS",
|
|
1915
|
-
"displayName": "TARGET_IDS",
|
|
1916
|
-
"kind": "constant",
|
|
1917
|
-
"signature": "const TARGET_IDS",
|
|
1918
|
-
"entrypoints": [
|
|
1919
|
-
"arcane-os"
|
|
1920
|
-
],
|
|
1921
|
-
"primaryImport": "arcane-os",
|
|
1922
|
-
"group": "Targets, native plans, and providers",
|
|
1923
|
-
"summary": "Frozen list of currently exposed target identifiers.",
|
|
1924
|
-
"availability": "Node; selected browser/native target or provider as documented",
|
|
1925
|
-
"protocol": "arcane-target-adapter/1, arcane-native-build-plan/1, or provider protocol",
|
|
1926
|
-
"normalization": "Exact immutable SDK value"
|
|
1927
|
-
},
|
|
1928
|
-
{
|
|
1929
|
-
"id": "root:test",
|
|
1930
|
-
"name": "test",
|
|
1931
|
-
"displayName": "test()",
|
|
1932
|
-
"kind": "function",
|
|
1933
|
-
"signature": "test(name, optionsOrCallback, maybeCallback)",
|
|
1934
|
-
"entrypoints": [
|
|
1935
|
-
"arcane-os",
|
|
1936
|
-
"arcane-os/testing"
|
|
1937
|
-
],
|
|
1938
|
-
"primaryImport": "arcane-os",
|
|
1939
|
-
"group": "Events, processes, and testing",
|
|
1940
|
-
"summary": "Registers one public test, optional timeout, callback, nested cases, and FIFO cleanup in the isolated runner.",
|
|
1941
|
-
"availability": "Node",
|
|
1942
|
-
"protocol": "Node ESM / owned process or test lifecycle",
|
|
1943
|
-
"normalization": "SDK event/error/report normalization"
|
|
1944
|
-
},
|
|
1945
|
-
{
|
|
1946
|
-
"id": "root:testApplication",
|
|
1947
|
-
"name": "testApplication",
|
|
1948
|
-
"displayName": "testApplication()",
|
|
1949
|
-
"kind": "function",
|
|
1950
|
-
"signature": "async testApplication(options={})",
|
|
1951
|
-
"entrypoints": [
|
|
1952
|
-
"arcane-os",
|
|
1953
|
-
"arcane-os/toolchain"
|
|
1954
|
-
],
|
|
1955
|
-
"primaryImport": "arcane-os",
|
|
1956
|
-
"group": "Headless toolchain operations",
|
|
1957
|
-
"summary": "Runs the selected application's exact test boundary or one integrated shared test.",
|
|
1958
|
-
"availability": "Node; selected operation may produce browser or native output",
|
|
1959
|
-
"protocol": "Shared headless operation API + arcane-cli-events/1",
|
|
1960
|
-
"normalization": "SDK-normalized inputs, errors, events, and documented result"
|
|
1961
|
-
},
|
|
1962
|
-
{
|
|
1963
|
-
"id": "root:throwIfAborted",
|
|
1964
|
-
"name": "throwIfAborted",
|
|
1965
|
-
"displayName": "throwIfAborted()",
|
|
1966
|
-
"kind": "function",
|
|
1967
|
-
"signature": "throwIfAborted(signal)",
|
|
1968
|
-
"entrypoints": [
|
|
1969
|
-
"arcane-os"
|
|
1970
|
-
],
|
|
1971
|
-
"primaryImport": "arcane-os",
|
|
1972
|
-
"group": "Errors",
|
|
1973
|
-
"summary": "Throws the signal reason or a normalized cancellation error when an AbortSignal is already aborted.",
|
|
1974
|
-
"availability": "Node",
|
|
1975
|
-
"protocol": "Node ESM",
|
|
1976
|
-
"normalization": "ArcaneError and JSON-safe error normalization"
|
|
1977
|
-
},
|
|
1978
|
-
{
|
|
1979
|
-
"id": "root:validateAppBundlePath",
|
|
1980
|
-
"name": "validateAppBundlePath",
|
|
1981
|
-
"displayName": "validateAppBundlePath()",
|
|
1982
|
-
"kind": "function",
|
|
1983
|
-
"signature": "validateAppBundlePath(value, label='bundle path')",
|
|
1984
|
-
"entrypoints": [
|
|
1985
|
-
"arcane-os",
|
|
1986
|
-
"arcane-os/release-bundle"
|
|
1987
|
-
],
|
|
1988
|
-
"primaryImport": "arcane-os",
|
|
1989
|
-
"group": "Packaging and release bundles",
|
|
1990
|
-
"summary": "Validates and normalizes one portable path admitted inside an external app bundle.",
|
|
1991
|
-
"availability": "Node",
|
|
1992
|
-
"protocol": "SDK packager, receipt, or deterministic bundle contract",
|
|
1993
|
-
"normalization": "Normalized SDK validation and receipt; canonical archive/release bytes preserved"
|
|
1994
|
-
},
|
|
1995
|
-
{
|
|
1996
|
-
"id": "root:validateAppConfig",
|
|
1997
|
-
"name": "validateAppConfig",
|
|
1998
|
-
"displayName": "validateAppConfig()",
|
|
1999
|
-
"kind": "function",
|
|
2000
|
-
"signature": "validateAppConfig(value, appId, rootConfig, configPath=`apps/${appId}/${APP_CONFIG_NAME}`)",
|
|
2001
|
-
"entrypoints": [
|
|
2002
|
-
"arcane-os/packager"
|
|
2003
|
-
],
|
|
2004
|
-
"primaryImport": "arcane-os/packager",
|
|
2005
|
-
"group": "Packaging and release bundles",
|
|
2006
|
-
"summary": "Validates one schema-1 packager app configuration and its relationship to the root config.",
|
|
2007
|
-
"availability": "Node",
|
|
2008
|
-
"protocol": "SDK packager, receipt, or deterministic bundle contract",
|
|
2009
|
-
"normalization": "Normalized SDK validation and receipt; canonical archive/release bytes preserved"
|
|
2010
|
-
},
|
|
2011
|
-
{
|
|
2012
|
-
"id": "root:validateAppDescriptor",
|
|
2013
|
-
"name": "validateAppDescriptor",
|
|
2014
|
-
"displayName": "validateAppDescriptor()",
|
|
2015
|
-
"kind": "function",
|
|
2016
|
-
"signature": "validateAppDescriptor(value, {appId}={})",
|
|
2017
|
-
"entrypoints": [
|
|
2018
|
-
"arcane-os"
|
|
2019
|
-
],
|
|
2020
|
-
"primaryImport": "arcane-os",
|
|
2021
|
-
"group": "Runtime and app descriptors",
|
|
2022
|
-
"summary": "Strictly validates and freezes one schema-2 app descriptor, including runtime-only cross-field rules.",
|
|
2023
|
-
"availability": "Node",
|
|
2024
|
-
"protocol": "Node ESM",
|
|
2025
|
-
"normalization": "SDK-normalized inputs, errors, events, and documented result"
|
|
2026
|
-
},
|
|
2027
|
-
{
|
|
2028
|
-
"id": "root:validateNativeBuilder",
|
|
2029
|
-
"name": "validateNativeBuilder",
|
|
2030
|
-
"displayName": "validateNativeBuilder()",
|
|
2031
|
-
"kind": "function",
|
|
2032
|
-
"signature": "validateNativeBuilder(provider)",
|
|
2033
|
-
"entrypoints": [
|
|
2034
|
-
"arcane-os",
|
|
2035
|
-
"arcane-os/native"
|
|
2036
|
-
],
|
|
2037
|
-
"primaryImport": "arcane-os",
|
|
2038
|
-
"group": "Targets, native plans, and providers",
|
|
2039
|
-
"summary": "Validates a native builder's protocol and required describe/doctor/prepare/build/verify/run methods.",
|
|
2040
|
-
"availability": "Node; selected browser/native target or provider as documented",
|
|
2041
|
-
"protocol": "arcane-target-adapter/1, arcane-native-build-plan/1, or provider protocol",
|
|
2042
|
-
"normalization": "Normalized plan/admission/receipt; target-specific artifact detail preserved"
|
|
2043
|
-
},
|
|
2044
|
-
{
|
|
2045
|
-
"id": "root:validateRootConfig",
|
|
2046
|
-
"name": "validateRootConfig",
|
|
2047
|
-
"displayName": "validateRootConfig()",
|
|
2048
|
-
"kind": "function",
|
|
2049
|
-
"signature": "validateRootConfig(value, configPath=ROOT_CONFIG_NAME)",
|
|
2050
|
-
"entrypoints": [
|
|
2051
|
-
"arcane-os/packager"
|
|
2052
|
-
],
|
|
2053
|
-
"primaryImport": "arcane-os/packager",
|
|
2054
|
-
"group": "Packaging and release bundles",
|
|
2055
|
-
"summary": "Validates one root packager mapping and its fixed shared-route boundaries.",
|
|
2056
|
-
"availability": "Node",
|
|
2057
|
-
"protocol": "SDK packager, receipt, or deterministic bundle contract",
|
|
2058
|
-
"normalization": "Normalized SDK validation and receipt; canonical archive/release bytes preserved"
|
|
2059
|
-
},
|
|
2060
|
-
{
|
|
2061
|
-
"id": "root:validateWorkspace",
|
|
2062
|
-
"name": "validateWorkspace",
|
|
2063
|
-
"displayName": "validateWorkspace()",
|
|
2064
|
-
"kind": "function",
|
|
2065
|
-
"signature": "async validateWorkspace({workspaceRoot=process.cwd(), appId, allowMissingManagedImportMap=false, signal, onEvent}={})",
|
|
2066
|
-
"entrypoints": [
|
|
2067
|
-
"arcane-os"
|
|
2068
|
-
],
|
|
2069
|
-
"primaryImport": "arcane-os",
|
|
2070
|
-
"group": "Workspace, doctor, repository, and server",
|
|
2071
|
-
"summary": "Runs canonical workspace, runtime, descriptor, selected-app, and exact installed-SDK validation with progress events.",
|
|
2072
|
-
"availability": "Node",
|
|
2073
|
-
"protocol": "Node ESM",
|
|
2074
|
-
"normalization": "Returns a frozen workspace receipt and, for external workspaces, the exact canonical or npm-alias-bound SDK installation authority"
|
|
2075
|
-
},
|
|
2076
|
-
{
|
|
2077
|
-
"id": "root:verifyApp",
|
|
2078
|
-
"name": "verifyApp",
|
|
2079
|
-
"displayName": "verifyApp()",
|
|
2080
|
-
"kind": "function",
|
|
2081
|
-
"signature": "async verifyApp({workspaceRoot, appId, signal, onEvent})",
|
|
2082
|
-
"entrypoints": [
|
|
2083
|
-
"arcane-os",
|
|
2084
|
-
"arcane-os/packager"
|
|
2085
|
-
],
|
|
2086
|
-
"primaryImport": "arcane-os",
|
|
2087
|
-
"group": "Packaging and release bundles",
|
|
2088
|
-
"summary": "Authenticates one existing browser app release through the low-level packager API.",
|
|
2089
|
-
"availability": "Node",
|
|
2090
|
-
"protocol": "SDK packager, receipt, or deterministic bundle contract",
|
|
2091
|
-
"normalization": "Normalized SDK validation and receipt; canonical archive/release bytes preserved"
|
|
2092
|
-
},
|
|
2093
|
-
{
|
|
2094
|
-
"id": "root:verifyApplication",
|
|
2095
|
-
"name": "verifyApplication",
|
|
2096
|
-
"displayName": "verifyApplication()",
|
|
2097
|
-
"kind": "function",
|
|
2098
|
-
"signature": "async verifyApplication(options={})",
|
|
2099
|
-
"entrypoints": [
|
|
2100
|
-
"arcane-os",
|
|
2101
|
-
"arcane-os/toolchain"
|
|
2102
|
-
],
|
|
2103
|
-
"primaryImport": "arcane-os",
|
|
2104
|
-
"group": "Headless toolchain operations",
|
|
2105
|
-
"summary": "Runs the high-level verification operation for one selected browser release.",
|
|
2106
|
-
"availability": "Node; selected operation may produce browser or native output",
|
|
2107
|
-
"protocol": "Shared headless operation API + arcane-cli-events/1",
|
|
2108
|
-
"normalization": "SDK-normalized inputs, errors, events, and documented result"
|
|
2109
|
-
},
|
|
2110
|
-
{
|
|
2111
|
-
"id": "root:verifyAppReleaseBundle",
|
|
2112
|
-
"name": "verifyAppReleaseBundle",
|
|
2113
|
-
"displayName": "verifyAppReleaseBundle()",
|
|
2114
|
-
"kind": "function",
|
|
2115
|
-
"signature": "async verifyAppReleaseBundle({bundlePath, signal, onEvent}={})",
|
|
2116
|
-
"entrypoints": [
|
|
2117
|
-
"arcane-os",
|
|
2118
|
-
"arcane-os/release-bundle"
|
|
2119
|
-
],
|
|
2120
|
-
"primaryImport": "arcane-os",
|
|
2121
|
-
"group": "Packaging and release bundles",
|
|
2122
|
-
"summary": "Parses and authenticates one deterministic app bundle without extraction.",
|
|
2123
|
-
"availability": "Node",
|
|
2124
|
-
"protocol": "SDK packager, receipt, or deterministic bundle contract",
|
|
2125
|
-
"normalization": "Normalized SDK validation and receipt; canonical archive/release bytes preserved"
|
|
2126
|
-
},
|
|
2127
|
-
{
|
|
2128
|
-
"id": "root:verifyBundleApplication",
|
|
2129
|
-
"name": "verifyBundleApplication",
|
|
2130
|
-
"displayName": "verifyBundleApplication()",
|
|
2131
|
-
"kind": "function",
|
|
2132
|
-
"signature": "async verifyBundleApplication(options={})",
|
|
2133
|
-
"entrypoints": [
|
|
2134
|
-
"arcane-os",
|
|
2135
|
-
"arcane-os/toolchain"
|
|
2136
|
-
],
|
|
2137
|
-
"primaryImport": "arcane-os",
|
|
2138
|
-
"group": "Headless toolchain operations",
|
|
2139
|
-
"summary": "Runs the high-level external bundle verification operation.",
|
|
2140
|
-
"availability": "Node; selected operation may produce browser or native output",
|
|
2141
|
-
"protocol": "Shared headless operation API + arcane-cli-events/1",
|
|
2142
|
-
"normalization": "SDK-normalized inputs, errors, events, and documented result"
|
|
2143
|
-
},
|
|
2144
|
-
{
|
|
2145
|
-
"id": "root:verifyNativeArtifact",
|
|
2146
|
-
"name": "verifyNativeArtifact",
|
|
2147
|
-
"displayName": "verifyNativeArtifact()",
|
|
2148
|
-
"kind": "function",
|
|
2149
|
-
"signature": "async verifyNativeArtifact(options={})",
|
|
2150
|
-
"entrypoints": [
|
|
2151
|
-
"arcane-os",
|
|
2152
|
-
"arcane-os/toolchain"
|
|
2153
|
-
],
|
|
2154
|
-
"primaryImport": "arcane-os",
|
|
2155
|
-
"group": "Targets, native plans, and providers",
|
|
2156
|
-
"summary": "Authenticates one target artifact through the exact prepared provider/toolchain receipt.",
|
|
2157
|
-
"availability": "Node; selected browser/native target or provider as documented",
|
|
2158
|
-
"protocol": "arcane-target-adapter/1, arcane-native-build-plan/1, or provider protocol",
|
|
2159
|
-
"normalization": "Normalized plan/admission/receipt; target-specific artifact detail preserved"
|
|
2160
|
-
},
|
|
2161
|
-
{
|
|
2162
|
-
"id": "root:verifyRuntime",
|
|
2163
|
-
"name": "verifyRuntime",
|
|
2164
|
-
"displayName": "verifyRuntime()",
|
|
2165
|
-
"kind": "function",
|
|
2166
|
-
"signature": "async verifyRuntime({ runtimeRoot=path.join(sdkRoot, 'runtime'), signal, onEvent }={})",
|
|
2167
|
-
"entrypoints": [
|
|
2168
|
-
"arcane-os"
|
|
2169
|
-
],
|
|
2170
|
-
"primaryImport": "arcane-os",
|
|
2171
|
-
"group": "Runtime and app descriptors",
|
|
2172
|
-
"summary": "Verifies every synchronized runtime file and returns a deeply frozen same-process receipt.",
|
|
2173
|
-
"availability": "Node",
|
|
2174
|
-
"protocol": "Node ESM",
|
|
2175
|
-
"normalization": "SDK-normalized inputs, errors, events, and documented result"
|
|
2176
|
-
},
|
|
2177
|
-
{
|
|
2178
|
-
"id": "root:verifyTarget",
|
|
2179
|
-
"name": "verifyTarget",
|
|
2180
|
-
"displayName": "verifyTarget()",
|
|
2181
|
-
"kind": "function",
|
|
2182
|
-
"signature": "async verifyTarget(options={})",
|
|
2183
|
-
"entrypoints": [
|
|
2184
|
-
"arcane-os",
|
|
2185
|
-
"arcane-os/targets"
|
|
2186
|
-
],
|
|
2187
|
-
"primaryImport": "arcane-os",
|
|
2188
|
-
"group": "Targets, native plans, and providers",
|
|
2189
|
-
"summary": "Invokes one target adapter's artifact verification boundary.",
|
|
2190
|
-
"availability": "Node; selected browser/native target or provider as documented",
|
|
2191
|
-
"protocol": "arcane-target-adapter/1, arcane-native-build-plan/1, or provider protocol",
|
|
2192
|
-
"normalization": "Normalized plan/admission/receipt; target-specific artifact detail preserved"
|
|
2193
|
-
},
|
|
2194
|
-
{
|
|
2195
|
-
"id": "root:ARCANE_EVENT_AUTHORITY_BRAND",
|
|
2196
|
-
"name": "ARCANE_EVENT_AUTHORITY_BRAND",
|
|
2197
|
-
"displayName": "ARCANE_EVENT_AUTHORITY_BRAND",
|
|
2198
|
-
"kind": "constant",
|
|
2199
|
-
"signature": "const ARCANE_EVENT_AUTHORITY_BRAND",
|
|
2200
|
-
"entrypoints": [
|
|
2201
|
-
"arcane-os",
|
|
2202
|
-
"arcane-os/event-manager"
|
|
2203
|
-
],
|
|
2204
|
-
"primaryImport": "arcane-os/event-manager",
|
|
2205
|
-
"group": "Central events, time travel, and DOM instrumentation",
|
|
2206
|
-
"summary": "Global registry symbol that brands the canonical per-realm Arcane event authority.",
|
|
2207
|
-
"availability": "Node and browser/bundler",
|
|
2208
|
-
"protocol": "Symbol.for('arcane-os.arcane-events-authority') with arcane-event-authority/1",
|
|
2209
|
-
"normalization": "Exact global symbol key; the authority brand descriptor is non-enumerable, non-writable, and non-configurable"
|
|
2210
|
-
},
|
|
2211
|
-
{
|
|
2212
|
-
"id": "root:ARCANE_EVENT_AUTHORITY_KIND",
|
|
2213
|
-
"name": "ARCANE_EVENT_AUTHORITY_KIND",
|
|
2214
|
-
"displayName": "ARCANE_EVENT_AUTHORITY_KIND",
|
|
2215
|
-
"kind": "constant",
|
|
2216
|
-
"signature": "const ARCANE_EVENT_AUTHORITY_KIND",
|
|
2217
|
-
"entrypoints": [
|
|
2218
|
-
"arcane-os",
|
|
2219
|
-
"arcane-os/event-manager"
|
|
2220
|
-
],
|
|
2221
|
-
"primaryImport": "arcane-os/event-manager",
|
|
2222
|
-
"group": "Central events, time travel, and DOM instrumentation",
|
|
2223
|
-
"summary": "Identifies the frozen canonical authority descriptor kind.",
|
|
2224
|
-
"availability": "Node and browser/bundler",
|
|
2225
|
-
"protocol": "arcane-event-authority",
|
|
2226
|
-
"normalization": "Exact immutable descriptor-kind discriminator"
|
|
2227
|
-
},
|
|
2228
|
-
{
|
|
2229
|
-
"id": "root:ARCANE_EVENT_AUTHORITY_PROTOCOL",
|
|
2230
|
-
"name": "ARCANE_EVENT_AUTHORITY_PROTOCOL",
|
|
2231
|
-
"displayName": "ARCANE_EVENT_AUTHORITY_PROTOCOL",
|
|
2232
|
-
"kind": "constant",
|
|
2233
|
-
"signature": "const ARCANE_EVENT_AUTHORITY_PROTOCOL",
|
|
2234
|
-
"entrypoints": [
|
|
2235
|
-
"arcane-os",
|
|
2236
|
-
"arcane-os/event-manager"
|
|
2237
|
-
],
|
|
2238
|
-
"primaryImport": "arcane-os/event-manager",
|
|
2239
|
-
"group": "Central events, time travel, and DOM instrumentation",
|
|
2240
|
-
"summary": "Identifies compatible canonical Arcane event authorities.",
|
|
2241
|
-
"availability": "Node and browser/bundler",
|
|
2242
|
-
"protocol": "arcane-event-authority/1",
|
|
2243
|
-
"normalization": "Exact authority protocol discriminator; incompatible globals fail closed"
|
|
2244
|
-
},
|
|
2245
|
-
{
|
|
2246
|
-
"id": "root:ARCANE_EVENT_ERROR_CODES",
|
|
2247
|
-
"name": "ARCANE_EVENT_ERROR_CODES",
|
|
2248
|
-
"displayName": "ARCANE_EVENT_ERROR_CODES",
|
|
2249
|
-
"kind": "constant",
|
|
2250
|
-
"signature": "const ARCANE_EVENT_ERROR_CODES",
|
|
2251
|
-
"entrypoints": [
|
|
2252
|
-
"arcane-os",
|
|
2253
|
-
"arcane-os/event-manager"
|
|
2254
|
-
],
|
|
2255
|
-
"primaryImport": "arcane-os/event-manager",
|
|
2256
|
-
"group": "Central events, time travel, and DOM instrumentation",
|
|
2257
|
-
"summary": "Frozen map of every stable event-authority error code to its identical string value.",
|
|
2258
|
-
"availability": "Node and browser/bundler",
|
|
2259
|
-
"protocol": "arcane-event-authority/1 failures",
|
|
2260
|
-
"normalization": "Exact frozen string-to-itself code map"
|
|
2261
|
-
},
|
|
2262
|
-
{
|
|
2263
|
-
"id": "root:ARCANE_EVENT_LISTENER_ERROR_EVENT",
|
|
2264
|
-
"name": "ARCANE_EVENT_LISTENER_ERROR_EVENT",
|
|
2265
|
-
"displayName": "ARCANE_EVENT_LISTENER_ERROR_EVENT",
|
|
2266
|
-
"kind": "constant",
|
|
2267
|
-
"signature": "const ARCANE_EVENT_LISTENER_ERROR_EVENT",
|
|
2268
|
-
"entrypoints": [
|
|
2269
|
-
"arcane-os",
|
|
2270
|
-
"arcane-os/event-manager"
|
|
2271
|
-
],
|
|
2272
|
-
"primaryImport": "arcane-os/event-manager",
|
|
2273
|
-
"group": "Central events, time travel, and DOM instrumentation",
|
|
2274
|
-
"summary": "Canonical observational event emitted for a privacy-safe listener failure.",
|
|
2275
|
-
"availability": "Node and browser/bundler",
|
|
2276
|
-
"protocol": "arcane.event.listener.error over arcane-event-authority/1",
|
|
2277
|
-
"normalization": "Frozen public failure detail; raw listener errors remain at the owner-local reporting boundary"
|
|
2278
|
-
},
|
|
2279
|
-
{
|
|
2280
|
-
"id": "root:ARCANE_EVENT_OCCURRENCE_PROTOCOL",
|
|
2281
|
-
"name": "ARCANE_EVENT_OCCURRENCE_PROTOCOL",
|
|
2282
|
-
"displayName": "ARCANE_EVENT_OCCURRENCE_PROTOCOL",
|
|
2283
|
-
"kind": "constant",
|
|
2284
|
-
"signature": "const ARCANE_EVENT_OCCURRENCE_PROTOCOL",
|
|
2285
|
-
"entrypoints": [
|
|
2286
|
-
"arcane-os",
|
|
2287
|
-
"arcane-os/event-manager"
|
|
2288
|
-
],
|
|
2289
|
-
"primaryImport": "arcane-os/event-manager",
|
|
2290
|
-
"group": "Central events, time travel, and DOM instrumentation",
|
|
2291
|
-
"summary": "Identifies immutable canonical event occurrences.",
|
|
2292
|
-
"availability": "Node and browser/bundler",
|
|
2293
|
-
"protocol": "arcane-event-occurrence/1",
|
|
2294
|
-
"normalization": "Exact occurrence protocol discriminator; public detail is privacy-admitted and deeply frozen"
|
|
2295
|
-
},
|
|
2296
|
-
{
|
|
2297
|
-
"id": "root:ARCANE_EVENT_SOURCE_DISPOSED_EVENT",
|
|
2298
|
-
"name": "ARCANE_EVENT_SOURCE_DISPOSED_EVENT",
|
|
2299
|
-
"displayName": "ARCANE_EVENT_SOURCE_DISPOSED_EVENT",
|
|
2300
|
-
"kind": "constant",
|
|
2301
|
-
"signature": "const ARCANE_EVENT_SOURCE_DISPOSED_EVENT",
|
|
2302
|
-
"entrypoints": [
|
|
2303
|
-
"arcane-os",
|
|
2304
|
-
"arcane-os/event-manager"
|
|
2305
|
-
],
|
|
2306
|
-
"primaryImport": "arcane-os/event-manager",
|
|
2307
|
-
"group": "Central events, time travel, and DOM instrumentation",
|
|
2308
|
-
"summary": "Final noncancelable canonical occurrence published when a source is disposed.",
|
|
2309
|
-
"availability": "Node and browser/bundler",
|
|
2310
|
-
"protocol": "arcane.event.source.disposed over arcane-event-authority/1",
|
|
2311
|
-
"normalization": "Frozen public detail with exact source-disposed reason before source listener cleanup"
|
|
2312
|
-
},
|
|
2313
|
-
{
|
|
2314
|
-
"id": "root:ARCANE_EVENT_SOURCE_KIND",
|
|
2315
|
-
"name": "ARCANE_EVENT_SOURCE_KIND",
|
|
2316
|
-
"displayName": "ARCANE_EVENT_SOURCE_KIND",
|
|
2317
|
-
"kind": "constant",
|
|
2318
|
-
"signature": "const ARCANE_EVENT_SOURCE_KIND",
|
|
2319
|
-
"entrypoints": [
|
|
2320
|
-
"arcane-os",
|
|
2321
|
-
"arcane-os/event-manager"
|
|
2322
|
-
],
|
|
2323
|
-
"primaryImport": "arcane-os/event-manager",
|
|
2324
|
-
"group": "Central events, time travel, and DOM instrumentation",
|
|
2325
|
-
"summary": "Identifies the frozen canonical source descriptor kind.",
|
|
2326
|
-
"availability": "Node and browser/bundler",
|
|
2327
|
-
"protocol": "arcane-event-source",
|
|
2328
|
-
"normalization": "Exact immutable descriptor-kind discriminator"
|
|
2329
|
-
},
|
|
2330
|
-
{
|
|
2331
|
-
"id": "root:ARCANE_EVENT_SOURCE_PROTOCOL",
|
|
2332
|
-
"name": "ARCANE_EVENT_SOURCE_PROTOCOL",
|
|
2333
|
-
"displayName": "ARCANE_EVENT_SOURCE_PROTOCOL",
|
|
2334
|
-
"kind": "constant",
|
|
2335
|
-
"signature": "const ARCANE_EVENT_SOURCE_PROTOCOL",
|
|
2336
|
-
"entrypoints": [
|
|
2337
|
-
"arcane-os",
|
|
2338
|
-
"arcane-os/event-manager"
|
|
2339
|
-
],
|
|
2340
|
-
"primaryImport": "arcane-os/event-manager",
|
|
2341
|
-
"group": "Central events, time travel, and DOM instrumentation",
|
|
2342
|
-
"summary": "Identifies frozen canonical event source handles and descriptors.",
|
|
2343
|
-
"availability": "Node and browser/bundler",
|
|
2344
|
-
"protocol": "arcane-event-source/1",
|
|
2345
|
-
"normalization": "Exact source protocol discriminator with declared event types and one realm-local instance id"
|
|
2346
|
-
},
|
|
2347
|
-
{
|
|
2348
|
-
"id": "root:ARCANE_EVENT_STACK_PROTOCOL",
|
|
2349
|
-
"name": "ARCANE_EVENT_STACK_PROTOCOL",
|
|
2350
|
-
"displayName": "ARCANE_EVENT_STACK_PROTOCOL",
|
|
2351
|
-
"kind": "constant",
|
|
2352
|
-
"signature": "const ARCANE_EVENT_STACK_PROTOCOL",
|
|
2353
|
-
"entrypoints": [
|
|
2354
|
-
"arcane-os",
|
|
2355
|
-
"arcane-os/event-manager"
|
|
2356
|
-
],
|
|
2357
|
-
"primaryImport": "arcane-os/event-manager",
|
|
2358
|
-
"group": "Central events, time travel, and DOM instrumentation",
|
|
2359
|
-
"summary": "Identifies strict serialized event-stack documents and records as arcane-event-stack/1.",
|
|
2360
|
-
"availability": "Node and browser/bundler",
|
|
2361
|
-
"protocol": "arcane-event-stack/1",
|
|
2362
|
-
"normalization": "Exact protocol discriminator; no transport or host authority"
|
|
2363
|
-
},
|
|
2364
|
-
{
|
|
2365
|
-
"id": "root:DEFAULT_DOM_EVENT_TYPES",
|
|
2366
|
-
"name": "DEFAULT_DOM_EVENT_TYPES",
|
|
2367
|
-
"displayName": "DEFAULT_DOM_EVENT_TYPES",
|
|
2368
|
-
"kind": "constant",
|
|
2369
|
-
"signature": "const DEFAULT_DOM_EVENT_TYPES",
|
|
2370
|
-
"entrypoints": [
|
|
2371
|
-
"arcane-os",
|
|
2372
|
-
"arcane-os/event-manager"
|
|
2373
|
-
],
|
|
2374
|
-
"primaryImport": "arcane-os/event-manager",
|
|
2375
|
-
"group": "Central events, time travel, and DOM instrumentation",
|
|
2376
|
-
"summary": "Frozen default set of 48 capture-phase DOM interaction event names.",
|
|
2377
|
-
"availability": "Node and browser/bundler; meaningful to browser DOM instrumentation",
|
|
2378
|
-
"protocol": "Synchronous DOM observation projected into arcane-event-stack/1 records",
|
|
2379
|
-
"normalization": "Exact frozen event-name list; host event objects are not retained"
|
|
2380
|
-
},
|
|
2381
|
-
{
|
|
2382
|
-
"id": "root:DOM_INTERACTION_EVENT",
|
|
2383
|
-
"name": "DOM_INTERACTION_EVENT",
|
|
2384
|
-
"displayName": "DOM_INTERACTION_EVENT",
|
|
2385
|
-
"kind": "constant",
|
|
2386
|
-
"signature": "const DOM_INTERACTION_EVENT",
|
|
2387
|
-
"entrypoints": [
|
|
2388
|
-
"arcane-os",
|
|
2389
|
-
"arcane-os/event-manager"
|
|
2390
|
-
],
|
|
2391
|
-
"primaryImport": "arcane-os/event-manager",
|
|
2392
|
-
"group": "Central events, time travel, and DOM instrumentation",
|
|
2393
|
-
"summary": "Event type emitted for a redacted, bounded DOM interaction diagnostic.",
|
|
2394
|
-
"availability": "Browser DOM or a DOM-compatible test host; constant imports in Node",
|
|
2395
|
-
"protocol": "In-process event-pubsub; optional arcane-event-stack/1 recording",
|
|
2396
|
-
"normalization": "Normalized target, path, flags, and bounded details; sensitive content redacted"
|
|
2397
|
-
},
|
|
2398
|
-
{
|
|
2399
|
-
"id": "root:DOM_MUTATION_EVENT",
|
|
2400
|
-
"name": "DOM_MUTATION_EVENT",
|
|
2401
|
-
"displayName": "DOM_MUTATION_EVENT",
|
|
2402
|
-
"kind": "constant",
|
|
2403
|
-
"signature": "const DOM_MUTATION_EVENT",
|
|
2404
|
-
"entrypoints": [
|
|
2405
|
-
"arcane-os",
|
|
2406
|
-
"arcane-os/event-manager"
|
|
2407
|
-
],
|
|
2408
|
-
"primaryImport": "arcane-os/event-manager",
|
|
2409
|
-
"group": "Central events, time travel, and DOM instrumentation",
|
|
2410
|
-
"summary": "Event type emitted for a redacted, bounded DOM mutation diagnostic.",
|
|
2411
|
-
"availability": "Browser DOM or a DOM-compatible test host; constant imports in Node",
|
|
2412
|
-
"protocol": "MutationObserver projected through in-process events and optional arcane-event-stack/1 recording",
|
|
2413
|
-
"normalization": "Normalized attribute, character-data, or child-list diagnostic; sensitive content redacted"
|
|
2414
|
-
},
|
|
2415
|
-
{
|
|
2416
|
-
"id": "root:DOM_OBSERVATION_STARTED_EVENT",
|
|
2417
|
-
"name": "DOM_OBSERVATION_STARTED_EVENT",
|
|
2418
|
-
"displayName": "DOM_OBSERVATION_STARTED_EVENT",
|
|
2419
|
-
"kind": "constant",
|
|
2420
|
-
"signature": "const DOM_OBSERVATION_STARTED_EVENT",
|
|
2421
|
-
"entrypoints": [
|
|
2422
|
-
"arcane-os",
|
|
2423
|
-
"arcane-os/event-manager"
|
|
2424
|
-
],
|
|
2425
|
-
"primaryImport": "arcane-os/event-manager",
|
|
2426
|
-
"group": "Central events, time travel, and DOM instrumentation",
|
|
2427
|
-
"summary": "Lifecycle event emitted after DOM instrumentation starts successfully.",
|
|
2428
|
-
"availability": "Browser DOM or a DOM-compatible test host; constant imports in Node",
|
|
2429
|
-
"protocol": "In-process event-pubsub; optional arcane-event-stack/1 recording",
|
|
2430
|
-
"normalization": "Normalized root and capture-option diagnostic"
|
|
2431
|
-
},
|
|
2432
|
-
{
|
|
2433
|
-
"id": "root:DOM_OBSERVATION_STOPPED_EVENT",
|
|
2434
|
-
"name": "DOM_OBSERVATION_STOPPED_EVENT",
|
|
2435
|
-
"displayName": "DOM_OBSERVATION_STOPPED_EVENT",
|
|
2436
|
-
"kind": "constant",
|
|
2437
|
-
"signature": "const DOM_OBSERVATION_STOPPED_EVENT",
|
|
2438
|
-
"entrypoints": [
|
|
2439
|
-
"arcane-os",
|
|
2440
|
-
"arcane-os/event-manager"
|
|
2441
|
-
],
|
|
2442
|
-
"primaryImport": "arcane-os/event-manager",
|
|
2443
|
-
"group": "Central events, time travel, and DOM instrumentation",
|
|
2444
|
-
"summary": "Lifecycle event emitted when active DOM instrumentation stops normally.",
|
|
2445
|
-
"availability": "Browser DOM or a DOM-compatible test host; constant imports in Node",
|
|
2446
|
-
"protocol": "In-process event-pubsub; optional arcane-event-stack/1 recording",
|
|
2447
|
-
"normalization": "Normalized root diagnostic; overflow shutdown intentionally suppresses this lifecycle record"
|
|
2448
|
-
},
|
|
2449
|
-
{
|
|
2450
|
-
"id": "root:EventManager",
|
|
2451
|
-
"name": "EventManager",
|
|
2452
|
-
"displayName": "EventManager",
|
|
2453
|
-
"kind": "class",
|
|
2454
|
-
"signature": "new EventManager(options={})",
|
|
2455
|
-
"entrypoints": [
|
|
2456
|
-
"arcane-os",
|
|
2457
|
-
"arcane-os/event-manager"
|
|
2458
|
-
],
|
|
2459
|
-
"primaryImport": "arcane-os/event-manager",
|
|
2460
|
-
"group": "Central events, time travel, and DOM instrumentation",
|
|
2461
|
-
"summary": "Runs synchronous pub/sub with optional bounded, immutable time-travel history and DOM instrumentation.",
|
|
2462
|
-
"availability": "Node and browser/bundler; DOM capture requires a browser DOM or compatible host",
|
|
2463
|
-
"protocol": "Synchronous event-pubsub plus optional arcane-event-stack/1 export/import",
|
|
2464
|
-
"normalization": "Live listener arguments retain identity; recorded payloads and metadata are bounded, redacted, deeply frozen snapshots"
|
|
2465
|
-
},
|
|
2466
|
-
{
|
|
2467
|
-
"id": "root:PLAYBACK_CANCELLED_EVENT",
|
|
2468
|
-
"name": "PLAYBACK_CANCELLED_EVENT",
|
|
2469
|
-
"displayName": "PLAYBACK_CANCELLED_EVENT",
|
|
2470
|
-
"kind": "constant",
|
|
2471
|
-
"signature": "const PLAYBACK_CANCELLED_EVENT",
|
|
2472
|
-
"entrypoints": [
|
|
2473
|
-
"arcane-os",
|
|
2474
|
-
"arcane-os/event-manager"
|
|
2475
|
-
],
|
|
2476
|
-
"primaryImport": "arcane-os/event-manager",
|
|
2477
|
-
"group": "Central events, time travel, and DOM instrumentation",
|
|
2478
|
-
"summary": "Lifecycle event emitted when an AbortSignal cancels event-stack playback.",
|
|
2479
|
-
"availability": "Node and browser/bundler",
|
|
2480
|
-
"protocol": "In-process playback lifecycle over an arcane-event-stack/1 source",
|
|
2481
|
-
"normalization": "Frozen summary with session, delivered count, cursor, completion flag, and redacted error snapshot"
|
|
2482
|
-
},
|
|
2483
|
-
{
|
|
2484
|
-
"id": "root:PLAYBACK_COMPLETED_EVENT",
|
|
2485
|
-
"name": "PLAYBACK_COMPLETED_EVENT",
|
|
2486
|
-
"displayName": "PLAYBACK_COMPLETED_EVENT",
|
|
2487
|
-
"kind": "constant",
|
|
2488
|
-
"signature": "const PLAYBACK_COMPLETED_EVENT",
|
|
2489
|
-
"entrypoints": [
|
|
2490
|
-
"arcane-os",
|
|
2491
|
-
"arcane-os/event-manager"
|
|
2492
|
-
],
|
|
2493
|
-
"primaryImport": "arcane-os/event-manager",
|
|
2494
|
-
"group": "Central events, time travel, and DOM instrumentation",
|
|
2495
|
-
"summary": "Lifecycle event emitted after selected event-stack records finish playback.",
|
|
2496
|
-
"availability": "Node and browser/bundler",
|
|
2497
|
-
"protocol": "In-process playback lifecycle over an arcane-event-stack/1 source",
|
|
2498
|
-
"normalization": "Frozen summary with session, delivered count, cursor, and completed=true"
|
|
2499
|
-
},
|
|
2500
|
-
{
|
|
2501
|
-
"id": "root:PLAYBACK_FAILED_EVENT",
|
|
2502
|
-
"name": "PLAYBACK_FAILED_EVENT",
|
|
2503
|
-
"displayName": "PLAYBACK_FAILED_EVENT",
|
|
2504
|
-
"kind": "constant",
|
|
2505
|
-
"signature": "const PLAYBACK_FAILED_EVENT",
|
|
2506
|
-
"entrypoints": [
|
|
2507
|
-
"arcane-os",
|
|
2508
|
-
"arcane-os/event-manager"
|
|
2509
|
-
],
|
|
2510
|
-
"primaryImport": "arcane-os/event-manager",
|
|
2511
|
-
"group": "Central events, time travel, and DOM instrumentation",
|
|
2512
|
-
"summary": "Lifecycle event emitted when event-stack playback fails for a reason other than signal cancellation.",
|
|
2513
|
-
"availability": "Node and browser/bundler",
|
|
2514
|
-
"protocol": "In-process playback lifecycle over an arcane-event-stack/1 source",
|
|
2515
|
-
"normalization": "Frozen summary with session, delivered count, cursor, completion flag, and redacted error snapshot"
|
|
2516
|
-
},
|
|
2517
|
-
{
|
|
2518
|
-
"id": "root:PLAYBACK_RECORD_EVENT",
|
|
2519
|
-
"name": "PLAYBACK_RECORD_EVENT",
|
|
2520
|
-
"displayName": "PLAYBACK_RECORD_EVENT",
|
|
2521
|
-
"kind": "constant",
|
|
2522
|
-
"signature": "const PLAYBACK_RECORD_EVENT",
|
|
2523
|
-
"entrypoints": [
|
|
2524
|
-
"arcane-os",
|
|
2525
|
-
"arcane-os/event-manager"
|
|
2526
|
-
],
|
|
2527
|
-
"primaryImport": "arcane-os/event-manager",
|
|
2528
|
-
"group": "Central events, time travel, and DOM instrumentation",
|
|
2529
|
-
"summary": "Review-mode event that presents one validated immutable record without re-emitting its original type.",
|
|
2530
|
-
"availability": "Node and browser/bundler",
|
|
2531
|
-
"protocol": "In-process review projection of arcane-event-stack/1",
|
|
2532
|
-
"normalization": "Validated immutable event-stack record"
|
|
2533
|
-
},
|
|
2534
|
-
{
|
|
2535
|
-
"id": "root:PLAYBACK_STARTED_EVENT",
|
|
2536
|
-
"name": "PLAYBACK_STARTED_EVENT",
|
|
2537
|
-
"displayName": "PLAYBACK_STARTED_EVENT",
|
|
2538
|
-
"kind": "constant",
|
|
2539
|
-
"signature": "const PLAYBACK_STARTED_EVENT",
|
|
2540
|
-
"entrypoints": [
|
|
2541
|
-
"arcane-os",
|
|
2542
|
-
"arcane-os/event-manager"
|
|
2543
|
-
],
|
|
2544
|
-
"primaryImport": "arcane-os/event-manager",
|
|
2545
|
-
"group": "Central events, time travel, and DOM instrumentation",
|
|
2546
|
-
"summary": "Lifecycle event emitted before the selected playback range is delivered.",
|
|
2547
|
-
"availability": "Node and browser/bundler",
|
|
2548
|
-
"protocol": "In-process playback lifecycle over an arcane-event-stack/1 source",
|
|
2549
|
-
"normalization": "Normalized session, range, count, speed, and mode summary"
|
|
2550
|
-
},
|
|
2551
|
-
{
|
|
2552
|
-
"id": "root:TIME_TRAVEL_OVERFLOW_EVENT",
|
|
2553
|
-
"name": "TIME_TRAVEL_OVERFLOW_EVENT",
|
|
2554
|
-
"displayName": "TIME_TRAVEL_OVERFLOW_EVENT",
|
|
2555
|
-
"kind": "constant",
|
|
2556
|
-
"signature": "const TIME_TRAVEL_OVERFLOW_EVENT",
|
|
2557
|
-
"entrypoints": [
|
|
2558
|
-
"arcane-os",
|
|
2559
|
-
"arcane-os/event-manager"
|
|
2560
|
-
],
|
|
2561
|
-
"primaryImport": "arcane-os/event-manager",
|
|
2562
|
-
"group": "Central events, time travel, and DOM instrumentation",
|
|
2563
|
-
"summary": "Terminal marker appended when bounded history reaches maxEvents and recording shuts down.",
|
|
2564
|
-
"availability": "Node and browser/bundler",
|
|
2565
|
-
"protocol": "Terminal arcane-event-stack/1 record type; the overflow marker is not dispatched on the live bus",
|
|
2566
|
-
"normalization": "Fixed event-manager source/category with exact retention evidence; history may contain maxEvents plus this marker"
|
|
2567
|
-
},
|
|
2568
|
-
{
|
|
2569
|
-
"id": "root:TIME_TRAVEL_SEEK_EVENT",
|
|
2570
|
-
"name": "TIME_TRAVEL_SEEK_EVENT",
|
|
2571
|
-
"displayName": "TIME_TRAVEL_SEEK_EVENT",
|
|
2572
|
-
"kind": "constant",
|
|
2573
|
-
"signature": "const TIME_TRAVEL_SEEK_EVENT",
|
|
2574
|
-
"entrypoints": [
|
|
2575
|
-
"arcane-os",
|
|
2576
|
-
"arcane-os/event-manager"
|
|
2577
|
-
],
|
|
2578
|
-
"primaryImport": "arcane-os/event-manager",
|
|
2579
|
-
"group": "Central events, time travel, and DOM instrumentation",
|
|
2580
|
-
"summary": "Event emitted when the review cursor seeks to sequence zero or a retained sequence.",
|
|
2581
|
-
"availability": "Node and browser/bundler",
|
|
2582
|
-
"protocol": "In-process review cursor event; the retained stack remains unchanged",
|
|
2583
|
-
"normalization": "Normalized sessionId, requested sequence, and immutable matching record or null"
|
|
2584
|
-
},
|
|
2585
|
-
{
|
|
2586
|
-
"id": "root:arcaneEvents",
|
|
2587
|
-
"name": "arcaneEvents",
|
|
2588
|
-
"displayName": "arcaneEvents",
|
|
2589
|
-
"kind": "singleton",
|
|
2590
|
-
"signature": "const arcaneEvents",
|
|
2591
|
-
"entrypoints": [
|
|
2592
|
-
"arcane-os",
|
|
2593
|
-
"arcane-os/event-manager"
|
|
2594
|
-
],
|
|
2595
|
-
"primaryImport": "arcane-os/event-manager",
|
|
2596
|
-
"group": "Central events, time travel, and DOM instrumentation",
|
|
2597
|
-
"summary": "Package-scoped EventManager singleton for applications that want one shared event bus.",
|
|
2598
|
-
"availability": "Node and browser/bundler; DOM capture requires a compatible DOM",
|
|
2599
|
-
"protocol": "Synchronous event-pubsub plus opt-in arcane-event-stack/1 recording",
|
|
2600
|
-
"normalization": "Same module singleton through root and focused subpath; time travel starts disabled"
|
|
2601
|
-
},
|
|
2602
|
-
{
|
|
2603
|
-
"id": "root:createArcaneEventSource",
|
|
2604
|
-
"name": "createArcaneEventSource",
|
|
2605
|
-
"displayName": "createArcaneEventSource()",
|
|
2606
|
-
"kind": "function",
|
|
2607
|
-
"signature": "createArcaneEventSource(owner, options)",
|
|
2608
|
-
"entrypoints": [
|
|
2609
|
-
"arcane-os",
|
|
2610
|
-
"arcane-os/event-manager"
|
|
2611
|
-
],
|
|
2612
|
-
"primaryImport": "arcane-os/event-manager",
|
|
2613
|
-
"group": "Central events, time travel, and DOM instrumentation",
|
|
2614
|
-
"summary": "Registers one declared semantic event source for a non-null object or function owner.",
|
|
2615
|
-
"availability": "Node and browser/bundler",
|
|
2616
|
-
"protocol": "arcane-event-source/1 over the per-realm arcane-event-authority/1 singleton",
|
|
2617
|
-
"normalization": "Returns one frozen source handle with declared event types, a realm-local instance id, synchronous publication, and deterministic disposal"
|
|
2618
|
-
},
|
|
2619
|
-
{
|
|
2620
|
-
"id": "root:createDOMInstrumentation",
|
|
2621
|
-
"name": "createDOMInstrumentation",
|
|
2622
|
-
"displayName": "createDOMInstrumentation()",
|
|
2623
|
-
"kind": "function",
|
|
2624
|
-
"signature": "createDOMInstrumentation(options={})",
|
|
2625
|
-
"entrypoints": [
|
|
2626
|
-
"arcane-os",
|
|
2627
|
-
"arcane-os/event-manager"
|
|
2628
|
-
],
|
|
2629
|
-
"primaryImport": "arcane-os/event-manager",
|
|
2630
|
-
"group": "Central events, time travel, and DOM instrumentation",
|
|
2631
|
-
"summary": "Creates a start/stop controller that projects DOM interactions and mutations into an EventManager.",
|
|
2632
|
-
"availability": "Browser DOM or a DOM-compatible test host",
|
|
2633
|
-
"protocol": "Capture-phase DOM events and MutationObserver projected to in-process EventManager events",
|
|
2634
|
-
"normalization": "Produces bounded diagnostic descriptors, redacts sensitive values and URLs, and never reconstructs DOM state"
|
|
2635
|
-
},
|
|
2636
|
-
{
|
|
2637
|
-
"id": "root:createEventManager",
|
|
2638
|
-
"name": "createEventManager",
|
|
2639
|
-
"displayName": "createEventManager()",
|
|
2640
|
-
"kind": "function",
|
|
2641
|
-
"signature": "createEventManager(options)",
|
|
2642
|
-
"entrypoints": [
|
|
2643
|
-
"arcane-os",
|
|
2644
|
-
"arcane-os/event-manager"
|
|
2645
|
-
],
|
|
2646
|
-
"primaryImport": "arcane-os/event-manager",
|
|
2647
|
-
"group": "Central events, time travel, and DOM instrumentation",
|
|
2648
|
-
"summary": "Constructs and returns an independent EventManager instance.",
|
|
2649
|
-
"availability": "Node and browser/bundler; DOM capture requires a compatible DOM",
|
|
2650
|
-
"protocol": "Synchronous event-pubsub plus optional arcane-event-stack/1",
|
|
2651
|
-
"normalization": "Equivalent constructor behavior without sharing the arcaneEvents singleton"
|
|
2652
|
-
},
|
|
2653
|
-
{
|
|
2654
|
-
"id": "root:describeDOMTarget",
|
|
2655
|
-
"name": "describeDOMTarget",
|
|
2656
|
-
"displayName": "describeDOMTarget()",
|
|
2657
|
-
"kind": "function",
|
|
2658
|
-
"signature": "describeDOMTarget(target, root)",
|
|
2659
|
-
"entrypoints": [
|
|
2660
|
-
"arcane-os",
|
|
2661
|
-
"arcane-os/event-manager"
|
|
2662
|
-
],
|
|
2663
|
-
"primaryImport": "arcane-os/event-manager",
|
|
2664
|
-
"group": "Central events, time travel, and DOM instrumentation",
|
|
2665
|
-
"summary": "Returns a frozen, content-free diagnostic descriptor for a DOM target.",
|
|
2666
|
-
"availability": "Browser DOM or DOM-compatible objects; importable in Node",
|
|
2667
|
-
"protocol": "Local DOM diagnostic helper",
|
|
2668
|
-
"normalization": "Normalizes document, shadow root, text, element, global, and generic event targets without retaining nodes"
|
|
2669
|
-
},
|
|
2670
|
-
{
|
|
2671
|
-
"id": "root:domSelector",
|
|
2672
|
-
"name": "domSelector",
|
|
2673
|
-
"displayName": "domSelector()",
|
|
2674
|
-
"kind": "function",
|
|
2675
|
-
"signature": "domSelector(target, root)",
|
|
2676
|
-
"entrypoints": [
|
|
2677
|
-
"arcane-os",
|
|
2678
|
-
"arcane-os/event-manager"
|
|
2679
|
-
],
|
|
2680
|
-
"primaryImport": "arcane-os/event-manager",
|
|
2681
|
-
"group": "Central events, time travel, and DOM instrumentation",
|
|
2682
|
-
"summary": "Builds a diagnostic selector across light DOM and open shadow-root boundaries.",
|
|
2683
|
-
"availability": "Browser DOM or DOM-compatible objects; importable in Node",
|
|
2684
|
-
"protocol": "Local DOM diagnostic helper",
|
|
2685
|
-
"normalization": "Returns a best-effort selector or null; triple-chevron separates open shadow boundaries"
|
|
2686
|
-
},
|
|
2687
|
-
{
|
|
2688
|
-
"id": "root:isArcaneEventOccurrence",
|
|
2689
|
-
"name": "isArcaneEventOccurrence",
|
|
2690
|
-
"displayName": "isArcaneEventOccurrence()",
|
|
2691
|
-
"kind": "function",
|
|
2692
|
-
"signature": "isArcaneEventOccurrence(value)",
|
|
2693
|
-
"entrypoints": [
|
|
2694
|
-
"arcane-os",
|
|
2695
|
-
"arcane-os/event-manager"
|
|
2696
|
-
],
|
|
2697
|
-
"primaryImport": "arcane-os/event-manager",
|
|
2698
|
-
"group": "Central events, time travel, and DOM instrumentation",
|
|
2699
|
-
"summary": "Recognizes canonical occurrences and compatibility views created by the current realm authority.",
|
|
2700
|
-
"availability": "Node and browser/bundler",
|
|
2701
|
-
"protocol": "arcane-event-occurrence/1 realm-local recognition",
|
|
2702
|
-
"normalization": "Returns a boolean from authority-owned identity records; protocol-shaped foreign objects are not admitted"
|
|
2703
|
-
},
|
|
2704
|
-
{
|
|
2705
|
-
"id": "root:parseEventStack",
|
|
2706
|
-
"name": "parseEventStack",
|
|
2707
|
-
"displayName": "parseEventStack()",
|
|
2708
|
-
"kind": "function",
|
|
2709
|
-
"signature": "parseEventStack(source, options={})",
|
|
2710
|
-
"entrypoints": [
|
|
2711
|
-
"arcane-os",
|
|
2712
|
-
"arcane-os/event-manager"
|
|
2713
|
-
],
|
|
2714
|
-
"primaryImport": "arcane-os/event-manager",
|
|
2715
|
-
"group": "Central events, time travel, and DOM instrumentation",
|
|
2716
|
-
"summary": "Strictly parses and validates an event-stack object or JSON string into a canonical frozen document.",
|
|
2717
|
-
"availability": "Node and browser/bundler",
|
|
2718
|
-
"protocol": "arcane-event-stack/1",
|
|
2719
|
-
"normalization": "Rejects extra keys, invalid bounds, malformed nesting, unsafe values, and nonterminal overflow; returns a deeply frozen canonical document"
|
|
2720
|
-
},
|
|
2721
|
-
{
|
|
2722
|
-
"id": "root:projectArcaneDOMEvent",
|
|
2723
|
-
"name": "projectArcaneDOMEvent",
|
|
2724
|
-
"displayName": "projectArcaneDOMEvent()",
|
|
2725
|
-
"kind": "function",
|
|
2726
|
-
"signature": "projectArcaneDOMEvent(target, occurrence, options)",
|
|
2727
|
-
"entrypoints": [
|
|
2728
|
-
"arcane-os",
|
|
2729
|
-
"arcane-os/event-manager"
|
|
2730
|
-
],
|
|
2731
|
-
"primaryImport": "arcane-os/event-manager",
|
|
2732
|
-
"group": "Central events, time travel, and DOM instrumentation",
|
|
2733
|
-
"summary": "Projects one canonical occurrence to one CustomEvent without republishing it into the authority.",
|
|
2734
|
-
"availability": "Browser DOM or a DOM-compatible test host",
|
|
2735
|
-
"protocol": "One-way arcane-event-occurrence/1 to CustomEvent compatibility projection",
|
|
2736
|
-
"normalization": "Adds immutable occurrence, source, instance, and operation identifiers; DOM cancellation propagates only to a cancelable occurrence"
|
|
2737
|
-
},
|
|
2738
|
-
{
|
|
2739
|
-
"id": "root:SDK_UPDATE_REGISTRY",
|
|
2740
|
-
"name": "SDK_UPDATE_REGISTRY",
|
|
2741
|
-
"displayName": "SDK_UPDATE_REGISTRY",
|
|
2742
|
-
"kind": "constant",
|
|
2743
|
-
"signature": "const SDK_UPDATE_REGISTRY",
|
|
2744
|
-
"entrypoints": [
|
|
2745
|
-
"arcane-os"
|
|
2746
|
-
],
|
|
2747
|
-
"primaryImport": "arcane-os",
|
|
2748
|
-
"group": "Explicit SDK update checks",
|
|
2749
|
-
"summary": "Approved default npm registry origin for the on-demand SDK update check.",
|
|
2750
|
-
"availability": "Node; on-demand CLI or maintainer check only",
|
|
2751
|
-
"protocol": "Credential-free HTTPS GET to an approved npm registry dist-tag endpoint",
|
|
2752
|
-
"normalization": "Exact immutable HTTPS origin string"
|
|
2753
|
-
},
|
|
2754
|
-
{
|
|
2755
|
-
"id": "root:SDK_UPDATE_TIMEOUT_MS",
|
|
2756
|
-
"name": "SDK_UPDATE_TIMEOUT_MS",
|
|
2757
|
-
"displayName": "SDK_UPDATE_TIMEOUT_MS",
|
|
2758
|
-
"kind": "constant",
|
|
2759
|
-
"signature": "const SDK_UPDATE_TIMEOUT_MS",
|
|
2760
|
-
"entrypoints": [
|
|
2761
|
-
"arcane-os"
|
|
2762
|
-
],
|
|
2763
|
-
"primaryImport": "arcane-os",
|
|
2764
|
-
"group": "Explicit SDK update checks",
|
|
2765
|
-
"summary": "Default per-request timeout for one explicit SDK registry check.",
|
|
2766
|
-
"availability": "Node; on-demand CLI or maintainer check only",
|
|
2767
|
-
"protocol": "Credential-free HTTPS GET to an approved npm registry dist-tag endpoint",
|
|
2768
|
-
"normalization": "Exact immutable millisecond integer"
|
|
2769
|
-
},
|
|
2770
|
-
{
|
|
2771
|
-
"id": "root:checkForSdkUpdate",
|
|
2772
|
-
"name": "checkForSdkUpdate",
|
|
2773
|
-
"displayName": "checkForSdkUpdate()",
|
|
2774
|
-
"kind": "function",
|
|
2775
|
-
"signature": "async checkForSdkUpdate({ packageName=SDK_NAME, currentVersion=SDK_VERSION, registry=SDK_UPDATE_REGISTRY, allowedRegistryHosts, timeoutMs=SDK_UPDATE_TIMEOUT_MS, fetchImpl=globalThis.fetch, signal, onEvent, clock=()=>new Date() }={})",
|
|
2776
|
-
"entrypoints": [
|
|
2777
|
-
"arcane-os"
|
|
2778
|
-
],
|
|
2779
|
-
"primaryImport": "arcane-os",
|
|
2780
|
-
"group": "Explicit SDK update checks",
|
|
2781
|
-
"summary": "Performs one bounded credential-free registry read and reports whether the selected npm dist-tag is newer than the installed SDK.",
|
|
2782
|
-
"availability": "Node; on-demand CLI or maintainer check only",
|
|
2783
|
-
"protocol": "Credential-free HTTPS GET to an approved npm registry dist-tag endpoint",
|
|
2784
|
-
"normalization": "Frozen current, ahead, or update-available result; bounded registry data and normalized update-check failures"
|
|
2785
|
-
},
|
|
2786
|
-
{
|
|
2787
|
-
"id": "root:checkSdkUpdate",
|
|
2788
|
-
"name": "checkSdkUpdate",
|
|
2789
|
-
"displayName": "checkSdkUpdate()",
|
|
2790
|
-
"kind": "function",
|
|
2791
|
-
"signature": "async checkSdkUpdate(options={})",
|
|
2792
|
-
"entrypoints": [
|
|
2793
|
-
"arcane-os",
|
|
2794
|
-
"arcane-os/toolchain"
|
|
2795
|
-
],
|
|
2796
|
-
"primaryImport": "arcane-os",
|
|
2797
|
-
"group": "Explicit SDK update checks",
|
|
2798
|
-
"summary": "Toolchain and CLI wrapper for exactly one checkForSdkUpdate invocation.",
|
|
2799
|
-
"availability": "Node; on-demand CLI or maintainer check only",
|
|
2800
|
-
"protocol": "Credential-free HTTPS GET to an approved npm registry dist-tag endpoint",
|
|
2801
|
-
"normalization": "Preserves the direct check result, events, cancellation, and errors without scheduling another check"
|
|
2802
|
-
},
|
|
2803
|
-
{
|
|
2804
|
-
"id": "root:compareSdkVersions",
|
|
2805
|
-
"name": "compareSdkVersions",
|
|
2806
|
-
"displayName": "compareSdkVersions()",
|
|
2807
|
-
"kind": "function",
|
|
2808
|
-
"signature": "compareSdkVersions(leftValue, rightValue)",
|
|
2809
|
-
"entrypoints": [
|
|
2810
|
-
"arcane-os"
|
|
2811
|
-
],
|
|
2812
|
-
"primaryImport": "arcane-os",
|
|
2813
|
-
"group": "Explicit SDK update checks",
|
|
2814
|
-
"summary": "Compares two strict semantic SDK versions without performing a registry request.",
|
|
2815
|
-
"availability": "Node; on-demand CLI or maintainer check only",
|
|
2816
|
-
"protocol": "In-process semantic-version comparison",
|
|
2817
|
-
"normalization": "Returns -1, 0, or 1; build metadata does not affect precedence"
|
|
2818
|
-
},
|
|
2819
|
-
{
|
|
2820
|
-
"id": "root:updateTagForVersion",
|
|
2821
|
-
"name": "updateTagForVersion",
|
|
2822
|
-
"displayName": "updateTagForVersion()",
|
|
2823
|
-
"kind": "function",
|
|
2824
|
-
"signature": "updateTagForVersion(value)",
|
|
2825
|
-
"entrypoints": [
|
|
2826
|
-
"arcane-os"
|
|
2827
|
-
],
|
|
2828
|
-
"primaryImport": "arcane-os",
|
|
2829
|
-
"group": "Explicit SDK update checks",
|
|
2830
|
-
"summary": "Selects npm dev for a prerelease SDK version and latest for a stable version.",
|
|
2831
|
-
"availability": "Node; on-demand CLI or maintainer check only",
|
|
2832
|
-
"protocol": "In-process npm dist-tag selection",
|
|
2833
|
-
"normalization": "Exact dev or latest tag selected from strict semantic-version prerelease state"
|
|
2834
|
-
},
|
|
2835
|
-
{
|
|
2836
|
-
"id": "root:validateUpdateRegistry",
|
|
2837
|
-
"name": "validateUpdateRegistry",
|
|
2838
|
-
"displayName": "validateUpdateRegistry()",
|
|
2839
|
-
"kind": "function",
|
|
2840
|
-
"signature": "validateUpdateRegistry(value, { allowedHosts=new Set(['registry.npmjs.org']) }={})",
|
|
2841
|
-
"entrypoints": [
|
|
2842
|
-
"arcane-os"
|
|
2843
|
-
],
|
|
2844
|
-
"primaryImport": "arcane-os",
|
|
2845
|
-
"group": "Explicit SDK update checks",
|
|
2846
|
-
"summary": "Validates one credential-free HTTPS registry root against an explicit hostname allowlist.",
|
|
2847
|
-
"availability": "Node; on-demand CLI or maintainer check only",
|
|
2848
|
-
"protocol": "Approved credential-free HTTPS registry origin",
|
|
2849
|
-
"normalization": "Returns a normalized URL object only for an exact allowed root origin"
|
|
2850
|
-
},
|
|
2851
|
-
{
|
|
2852
|
-
"id": "browser-wasm:BROWSER_WASM_RUNTIME_AUTHORITY",
|
|
2853
|
-
"name": "BROWSER_WASM_RUNTIME_AUTHORITY",
|
|
2854
|
-
"displayName": "BROWSER_WASM_RUNTIME_AUTHORITY",
|
|
2855
|
-
"kind": "constant",
|
|
2856
|
-
"signature": "const BROWSER_WASM_RUNTIME_AUTHORITY",
|
|
2857
|
-
"entrypoints": [
|
|
2858
|
-
"arcane-os/ai/browser-wasm"
|
|
2859
|
-
],
|
|
2860
|
-
"primaryImport": "arcane-os/ai/browser-wasm",
|
|
2861
|
-
"group": "Browser-WASM local AI",
|
|
2862
|
-
"summary": "Deep-frozen authority for the packaged Wllama and llama.cpp runtime, authenticated JS and WASM assets, licensing, and disabled compatibility-network policy.",
|
|
2863
|
-
"availability": "Browser metadata; import and inspection require neither DBOPFS nor a loaded model",
|
|
2864
|
-
"protocol": "arcane-ai-browser-wasm/2 over the provider-neutral arcane-ai-adapter/1 boundary",
|
|
2865
|
-
"normalization": "Exact immutable runtime and component identity; it contains no model weights or model catalog"
|
|
2866
|
-
},
|
|
2867
|
-
{
|
|
2868
|
-
"id": "browser-wasm:adaptV1LlmProvider",
|
|
2869
|
-
"name": "adaptV1LlmProvider",
|
|
2870
|
-
"displayName": "adaptV1LlmProvider()",
|
|
2871
|
-
"kind": "function",
|
|
2872
|
-
"signature": "adaptV1LlmProvider(provider)",
|
|
2873
|
-
"entrypoints": [
|
|
2874
|
-
"arcane-os/ai/browser-wasm"
|
|
2875
|
-
],
|
|
2876
|
-
"primaryImport": "arcane-os/ai/browser-wasm",
|
|
2877
|
-
"group": "Browser-WASM local AI",
|
|
2878
|
-
"summary": "Adapts one compatible browser LLM provider to the provider-neutral LLM role contract.",
|
|
2879
|
-
"availability": "Browser; the wrapped provider retains its own WebGPU, storage, model, and lifecycle requirements",
|
|
2880
|
-
"protocol": "arcane-ai-provider/2 adapted from the browser LLM adapter surface",
|
|
2881
|
-
"normalization": "Projects catalog, inspection, status, lifecycle, chat, stream, cancellation, and disposal without adding a provider or fallback"
|
|
2882
|
-
},
|
|
2883
|
-
{
|
|
2884
|
-
"id": "browser-wasm:createArcaneAI",
|
|
2885
|
-
"name": "createArcaneAI",
|
|
2886
|
-
"displayName": "createArcaneAI()",
|
|
2887
|
-
"kind": "function",
|
|
2888
|
-
"signature": "createArcaneAI({ llm=null, provider=null, loadPolicy='on-demand', security }={})",
|
|
2889
|
-
"entrypoints": [
|
|
2890
|
-
"arcane-os/ai/browser-wasm"
|
|
2891
|
-
],
|
|
2892
|
-
"primaryImport": "arcane-os/ai/browser-wasm",
|
|
2893
|
-
"group": "Browser-WASM local AI",
|
|
2894
|
-
"summary": "Creates the provider-neutral browser AI facade and LLM lifecycle controller around one compatible provider or controller.",
|
|
2895
|
-
"availability": "Browser; the selected provider observes its own WebAssembly, storage, and model readiness",
|
|
2896
|
-
"protocol": "arcane-ai-adapter/1",
|
|
2897
|
-
"normalization": "Normalizes lazy or manual load, fieldwise app/provider/load security inheritance from SDK secure:false, lifecycle status, cancellation, streaming completion, and structural tool-call visibility without executing tools; an existing ModelController retains its preconfigured security/load policy and rejects a new security option"
|
|
2898
|
-
},
|
|
2899
|
-
{
|
|
2900
|
-
"id": "browser-wasm:createBrowserModelSource",
|
|
2901
|
-
"name": "createBrowserModelSource",
|
|
2902
|
-
"displayName": "createBrowserModelSource()",
|
|
2903
|
-
"kind": "function",
|
|
2904
|
-
"signature": "createBrowserModelSource(descriptor, { fetchImpl=null }={})",
|
|
2905
|
-
"entrypoints": [
|
|
2906
|
-
"arcane-os/ai/browser-wasm"
|
|
2907
|
-
],
|
|
2908
|
-
"primaryImport": "arcane-os/ai/browser-wasm",
|
|
2909
|
-
"group": "Browser-WASM local AI",
|
|
2910
|
-
"summary": "Validates a caller-supplied ordered multi-file model descriptor (or the legacy one-file shape) and creates cancellable no-credentials HTTPS member downloads.",
|
|
2911
|
-
"availability": "Browser with Fetch and a readable response body; each direct member open performs its configured HTTPS fetch",
|
|
2912
|
-
"protocol": "Caller-supplied immutable HTTPS model-file URLs with optional expected byte lengths and SHA-256 values",
|
|
2913
|
-
"normalization": "Canonical frozen ordered descriptor and per-member download handle; expected fields are required and enforced only for their effective enabled checks, and model license is not runtime admission"
|
|
2914
|
-
},
|
|
2915
|
-
{
|
|
2916
|
-
"id": "browser-wasm:createBrowserWasmLlmProvider",
|
|
2917
|
-
"name": "createBrowserWasmLlmProvider",
|
|
2918
|
-
"displayName": "createBrowserWasmLlmProvider()",
|
|
2919
|
-
"kind": "function",
|
|
2920
|
-
"signature": "createBrowserWasmLlmProvider({ source, sources, store, loadDefaults={}, security, logger=console }={})",
|
|
2921
|
-
"entrypoints": [
|
|
2922
|
-
"arcane-os/ai/browser-wasm"
|
|
2923
|
-
],
|
|
2924
|
-
"primaryImport": "arcane-os/ai/browser-wasm",
|
|
2925
|
-
"group": "Browser-WASM local AI",
|
|
2926
|
-
"summary": "Creates the packaged Wllama browser provider with effective-check disclosure, honest integrity status, serialized inference, streaming, abort, unload, and probe operations.",
|
|
2927
|
-
"availability": "Browser secure context with WebAssembly, OPFS/DBOPFS, WebGPU, and admitted full-offload/buffer/queue/fence evidence; no CPU fallback",
|
|
2928
|
-
"protocol": "arcane-ai-adapter/1 with OpenAI-like chat completion and streaming envelopes",
|
|
2929
|
-
"normalization": "Frozen lifecycle/status/security/integrity records and structured tool-call data; security fields inherit by scope and the SDK never invokes application tools"
|
|
2930
|
-
},
|
|
2931
|
-
{
|
|
2932
|
-
"id": "browser-wasm:createDbopfsModelStore",
|
|
2933
|
-
"name": "createDbopfsModelStore",
|
|
2934
|
-
"displayName": "createDbopfsModelStore()",
|
|
2935
|
-
"kind": "function",
|
|
2936
|
-
"signature": "createDbopfsModelStore({ dbopfs, tableName='arcane_ai_browser_models', estimateStorage=null }={})",
|
|
2937
|
-
"entrypoints": [
|
|
2938
|
-
"arcane-os/ai/browser-wasm"
|
|
2939
|
-
],
|
|
2940
|
-
"primaryImport": "arcane-os/ai/browser-wasm",
|
|
2941
|
-
"group": "Browser-WASM local AI",
|
|
2942
|
-
"summary": "Adapts an existing DBOPFS instance into a model cache that records observed bytes, commits metadata last, and hashes only when SHA-256 checking is enabled.",
|
|
2943
|
-
"availability": "Browser with a ready DBOPFS instance and OPFS support",
|
|
2944
|
-
"protocol": "arcane.ai.browser-wasm.model.v4 completion manifests over existing DBOPFS method semantics",
|
|
2945
|
-
"normalization": "Returns cached or installed receipts with observed byte count and per-check outcomes; disabled expected-length and SHA-256 checks do not compare or hash, while enabled checks fail closed"
|
|
2946
|
-
},
|
|
2947
|
-
{
|
|
2948
|
-
"id": "browser-speech:BROWSER_SPEECH_ARTIFACT_GRAPH_PROTOCOL",
|
|
2949
|
-
"name": "BROWSER_SPEECH_ARTIFACT_GRAPH_PROTOCOL",
|
|
2950
|
-
"displayName": "BROWSER_SPEECH_ARTIFACT_GRAPH_PROTOCOL",
|
|
2951
|
-
"kind": "constant",
|
|
2952
|
-
"signature": "const BROWSER_SPEECH_ARTIFACT_GRAPH_PROTOCOL",
|
|
2953
|
-
"entrypoints": [
|
|
2954
|
-
"arcane-os/ai/browser-speech"
|
|
2955
|
-
],
|
|
2956
|
-
"primaryImport": "arcane-os/ai/browser-speech",
|
|
2957
|
-
"group": "Browser speech providers",
|
|
2958
|
-
"summary": "Stable protocol identifier for a complete caller-owned authenticated browser speech artifact graph.",
|
|
2959
|
-
"availability": "Browser metadata; graph construction is side-effect free and provider use requires the selected browser storage and Worker capabilities",
|
|
2960
|
-
"protocol": "arcane-ai-browser-speech-artifact-graph/1",
|
|
2961
|
-
"normalization": "Exact immutable protocol value for one closed runtime, model, and voice dependency graph; it selects no artifacts or policy"
|
|
2962
|
-
},
|
|
2963
|
-
{
|
|
2964
|
-
"id": "browser-speech:BROWSER_SPEECH_ARTIFACT_PROTOCOL",
|
|
2965
|
-
"name": "BROWSER_SPEECH_ARTIFACT_PROTOCOL",
|
|
2966
|
-
"displayName": "BROWSER_SPEECH_ARTIFACT_PROTOCOL",
|
|
2967
|
-
"kind": "constant",
|
|
2968
|
-
"signature": "const BROWSER_SPEECH_ARTIFACT_PROTOCOL",
|
|
2969
|
-
"entrypoints": [
|
|
2970
|
-
"arcane-os/ai/browser-speech"
|
|
2971
|
-
],
|
|
2972
|
-
"primaryImport": "arcane-os/ai/browser-speech",
|
|
2973
|
-
"group": "Browser speech providers",
|
|
2974
|
-
"summary": "Stable protocol identifier for authenticated browser speech artifact stores.",
|
|
2975
|
-
"availability": "Browser metadata; model/runtime admission and use require DBOPFS, Web Locks, Workers, and caller-supplied immutable artifacts",
|
|
2976
|
-
"protocol": "arcane-ai-browser-speech-artifacts/1 over arcane-ai-provider/2",
|
|
2977
|
-
"normalization": "Exact immutable protocol value; it grants no model authority and names no model download"
|
|
2978
|
-
},
|
|
2979
|
-
{
|
|
2980
|
-
"id": "browser-speech:createBrowserKokoroProvider",
|
|
2981
|
-
"name": "createBrowserKokoroProvider",
|
|
2982
|
-
"displayName": "createBrowserKokoroProvider()",
|
|
2983
|
-
"kind": "function",
|
|
2984
|
-
"signature": "createBrowserKokoroProvider(options={})",
|
|
2985
|
-
"entrypoints": [
|
|
2986
|
-
"arcane-os/ai/browser-speech"
|
|
2987
|
-
],
|
|
2988
|
-
"primaryImport": "arcane-os/ai/browser-speech",
|
|
2989
|
-
"group": "Browser speech providers",
|
|
2990
|
-
"summary": "Creates a local-only Kokoro text-to-speech provider for the provider-neutral AI runtime.",
|
|
2991
|
-
"availability": "Browser with DBOPFS, Web Locks, Workers, object URLs, and a caller-admitted self-contained kokoro-js runtime/model closure",
|
|
2992
|
-
"protocol": "arcane-ai-provider/2 tts/synthesize",
|
|
2993
|
-
"normalization": "Independent load, status, request, unload, cancellation, and disposal; provider-native requests return 24000 Hz Float32Array PCM, while shared AI.js requests admit only wav and return frozen Uint8Array audio/wav data; never selects a cloud fallback"
|
|
2994
|
-
},
|
|
2995
|
-
{
|
|
2996
|
-
"id": "browser-speech:createBrowserSpeechArtifactGraph",
|
|
2997
|
-
"name": "createBrowserSpeechArtifactGraph",
|
|
2998
|
-
"displayName": "createBrowserSpeechArtifactGraph()",
|
|
2999
|
-
"kind": "function",
|
|
3000
|
-
"signature": "createBrowserSpeechArtifactGraph({ kind='browser-speech-authenticated-artifact-graph', identitySha256, providerId=null, role, model, runtime, files, edges, transforms }={})",
|
|
3001
|
-
"entrypoints": [
|
|
3002
|
-
"arcane-os/ai/browser-speech"
|
|
3003
|
-
],
|
|
3004
|
-
"primaryImport": "arcane-os/ai/browser-speech",
|
|
3005
|
-
"group": "Browser speech providers",
|
|
3006
|
-
"summary": "Validates, canonicalizes, identifies, and freezes one complete caller-owned browser speech artifact graph.",
|
|
3007
|
-
"availability": "Browser metadata; construction starts no fetch, cache, Worker, provider, or event operation",
|
|
3008
|
-
"protocol": "arcane-ai-browser-speech-artifact-graph/1",
|
|
3009
|
-
"normalization": "Returns one closed graph with lexically normalized inventories, a canonical SHA-256 identity, declared runtime edges, explicit STT/TTS model policy, and no SDK-selected artifacts"
|
|
3010
|
-
},
|
|
3011
|
-
{
|
|
3012
|
-
"id": "browser-speech:createBrowserSpeechAuthority",
|
|
3013
|
-
"name": "createBrowserSpeechAuthority",
|
|
3014
|
-
"displayName": "createBrowserSpeechAuthority()",
|
|
3015
|
-
"kind": "function",
|
|
3016
|
-
"signature": "createBrowserSpeechAuthority({ providerId, role, model, runtime, security }={})",
|
|
3017
|
-
"entrypoints": [
|
|
3018
|
-
"arcane-os/ai/browser-speech"
|
|
3019
|
-
],
|
|
3020
|
-
"primaryImport": "arcane-os/ai/browser-speech",
|
|
3021
|
-
"group": "Browser speech providers",
|
|
3022
|
-
"summary": "Validates and freezes one caller-owned Whisper or Kokoro model/runtime authority.",
|
|
3023
|
-
"availability": "Browser descriptor construction; using the authority requires the selected storage and provider Web APIs",
|
|
3024
|
-
"protocol": "arcane-ai-model-authority/1",
|
|
3025
|
-
"normalization": "Requires immutable URL identity, exact adapter role, unique paths/URLs, and caller-supplied revision with optional byte-length and SHA-256 checks"
|
|
3026
|
-
},
|
|
3027
|
-
{
|
|
3028
|
-
"id": "browser-speech:createBrowserWhisperProvider",
|
|
3029
|
-
"name": "createBrowserWhisperProvider",
|
|
3030
|
-
"displayName": "createBrowserWhisperProvider()",
|
|
3031
|
-
"kind": "function",
|
|
3032
|
-
"signature": "createBrowserWhisperProvider(options={})",
|
|
3033
|
-
"entrypoints": [
|
|
3034
|
-
"arcane-os/ai/browser-speech"
|
|
3035
|
-
],
|
|
3036
|
-
"primaryImport": "arcane-os/ai/browser-speech",
|
|
3037
|
-
"group": "Browser speech providers",
|
|
3038
|
-
"summary": "Creates a local-only Whisper speech-to-text provider for the provider-neutral AI runtime.",
|
|
3039
|
-
"availability": "Browser with DBOPFS, Web Locks, Workers, object URLs, and a caller-admitted self-contained transformers-whisper runtime/model closure",
|
|
3040
|
-
"protocol": "arcane-ai-provider/2 stt/transcribe",
|
|
3041
|
-
"normalization": "Independent load, status, request, unload, cancellation, and disposal; accepts provider-native Float32Array audio at exactly 16000 Hz or decodes the shared AI.js Blob/File payload to authoritative 16000 Hz mono PCM; never selects a cloud fallback"
|
|
3042
|
-
},
|
|
3043
|
-
{
|
|
3044
|
-
"id": "browser-speech:createDbopfsSpeechArtifactStore",
|
|
3045
|
-
"name": "createDbopfsSpeechArtifactStore",
|
|
3046
|
-
"displayName": "createDbopfsSpeechArtifactStore()",
|
|
3047
|
-
"kind": "function",
|
|
3048
|
-
"signature": "createDbopfsSpeechArtifactStore({ dbopfs, tableName='arcane_ai_browser_speech', fetchImpl=null, objectUrlFactory=null }={})",
|
|
3049
|
-
"entrypoints": [
|
|
3050
|
-
"arcane-os/ai/browser-speech"
|
|
3051
|
-
],
|
|
3052
|
-
"primaryImport": "arcane-os/ai/browser-speech",
|
|
3053
|
-
"group": "Browser speech providers",
|
|
3054
|
-
"summary": "Adapts an existing DBOPFS instance into an authenticated, authority-scoped speech runtime/model artifact store.",
|
|
3055
|
-
"availability": "Browser with a ready DBOPFS instance, Web Locks, Fetch or an explicit fetch implementation, File/Blob, and object URLs",
|
|
3056
|
-
"protocol": "arcane.ai.browser-speech.assets.v1 completion manifests under arcane-ai-browser-speech-artifacts/1",
|
|
3057
|
-
"normalization": "Serializes each authority, commits its completion manifest last, deletes partial state on failure, and supports strict offline cache admission"
|
|
3058
|
-
},
|
|
3059
|
-
{
|
|
3060
|
-
"id": "mail:DEFAULT_MAIL_REQUEST_TIMEOUT_MS",
|
|
3061
|
-
"name": "DEFAULT_MAIL_REQUEST_TIMEOUT_MS",
|
|
3062
|
-
"displayName": "DEFAULT_MAIL_REQUEST_TIMEOUT_MS",
|
|
3063
|
-
"kind": "constant",
|
|
3064
|
-
"signature": "const DEFAULT_MAIL_REQUEST_TIMEOUT_MS",
|
|
3065
|
-
"entrypoints": ["arcane-os/mail"],
|
|
3066
|
-
"primaryImport": "arcane-os/mail",
|
|
3067
|
-
"group": "Portable Mail",
|
|
3068
|
-
"summary": "Default upper bound for one Mail HTTP request in milliseconds.",
|
|
3069
|
-
"availability": "Node and browser with Fetch and AbortController for transport use",
|
|
3070
|
-
"protocol": "Arcane Mail HTTP transport",
|
|
3071
|
-
"normalization": "Exact immutable value of 590000 milliseconds"
|
|
3072
|
-
},
|
|
3073
|
-
{
|
|
3074
|
-
"id": "mail:MAIL_OUTBOX_ACCEPTANCE_AUTHORITIES",
|
|
3075
|
-
"name": "MAIL_OUTBOX_ACCEPTANCE_AUTHORITIES",
|
|
3076
|
-
"displayName": "MAIL_OUTBOX_ACCEPTANCE_AUTHORITIES",
|
|
3077
|
-
"kind": "constant",
|
|
3078
|
-
"signature": "const MAIL_OUTBOX_ACCEPTANCE_AUTHORITIES",
|
|
3079
|
-
"entrypoints": ["arcane-os/mail"],
|
|
3080
|
-
"primaryImport": "arcane-os/mail",
|
|
3081
|
-
"group": "Portable Mail",
|
|
3082
|
-
"summary": "Frozen acceptance-authority allowlist for durable outbox delivery evidence.",
|
|
3083
|
-
"availability": "Node and browser metadata",
|
|
3084
|
-
"protocol": "arcane-mail-outbox/1",
|
|
3085
|
-
"normalization": "Exact immutable authority names; acceptance means admitted provider or Core acceptance, not inbox delivery"
|
|
3086
|
-
},
|
|
3087
|
-
{
|
|
3088
|
-
"id": "mail:MAIL_OUTBOX_IDEMPOTENCY_WINDOW_MS",
|
|
3089
|
-
"name": "MAIL_OUTBOX_IDEMPOTENCY_WINDOW_MS",
|
|
3090
|
-
"displayName": "MAIL_OUTBOX_IDEMPOTENCY_WINDOW_MS",
|
|
3091
|
-
"kind": "constant",
|
|
3092
|
-
"signature": "const MAIL_OUTBOX_IDEMPOTENCY_WINDOW_MS",
|
|
3093
|
-
"entrypoints": ["arcane-os/mail"],
|
|
3094
|
-
"primaryImport": "arcane-os/mail",
|
|
3095
|
-
"group": "Portable Mail",
|
|
3096
|
-
"summary": "Duration for same-key retry before an ambiguous delivery requires reconciliation.",
|
|
3097
|
-
"availability": "Node and browser metadata",
|
|
3098
|
-
"protocol": "arcane-mail-outbox/1",
|
|
3099
|
-
"normalization": "Exact immutable value of 86400000 milliseconds"
|
|
3100
|
-
},
|
|
3101
|
-
{
|
|
3102
|
-
"id": "mail:MAIL_OUTBOX_PROTOCOL",
|
|
3103
|
-
"name": "MAIL_OUTBOX_PROTOCOL",
|
|
3104
|
-
"displayName": "MAIL_OUTBOX_PROTOCOL",
|
|
3105
|
-
"kind": "constant",
|
|
3106
|
-
"signature": "const MAIL_OUTBOX_PROTOCOL",
|
|
3107
|
-
"entrypoints": ["arcane-os/mail"],
|
|
3108
|
-
"primaryImport": "arcane-os/mail",
|
|
3109
|
-
"group": "Portable Mail",
|
|
3110
|
-
"summary": "Stable protocol identifier written to durable Mail outbox records.",
|
|
3111
|
-
"availability": "Node and browser metadata",
|
|
3112
|
-
"protocol": "arcane-mail-outbox/1",
|
|
3113
|
-
"normalization": "Exact immutable protocol value"
|
|
3114
|
-
},
|
|
3115
|
-
{
|
|
3116
|
-
"id": "mail:MAIL_OUTBOX_STATES",
|
|
3117
|
-
"name": "MAIL_OUTBOX_STATES",
|
|
3118
|
-
"displayName": "MAIL_OUTBOX_STATES",
|
|
3119
|
-
"kind": "constant",
|
|
3120
|
-
"signature": "const MAIL_OUTBOX_STATES",
|
|
3121
|
-
"entrypoints": ["arcane-os/mail"],
|
|
3122
|
-
"primaryImport": "arcane-os/mail",
|
|
3123
|
-
"group": "Portable Mail",
|
|
3124
|
-
"summary": "Frozen ordered vocabulary for durable Mail outbox lifecycle states.",
|
|
3125
|
-
"availability": "Node and browser metadata",
|
|
3126
|
-
"protocol": "arcane-mail-outbox/1",
|
|
3127
|
-
"normalization": "Exact queued, sending, retry_wait, accepted, failed, and reconciliation_required state list"
|
|
3128
|
-
},
|
|
3129
|
-
{
|
|
3130
|
-
"id": "mail:MAIL_OUTBOX_TABLE",
|
|
3131
|
-
"name": "MAIL_OUTBOX_TABLE",
|
|
3132
|
-
"displayName": "MAIL_OUTBOX_TABLE",
|
|
3133
|
-
"kind": "constant",
|
|
3134
|
-
"signature": "const MAIL_OUTBOX_TABLE",
|
|
3135
|
-
"entrypoints": ["arcane-os/mail"],
|
|
3136
|
-
"primaryImport": "arcane-os/mail",
|
|
3137
|
-
"group": "Portable Mail",
|
|
3138
|
-
"summary": "Default DBOPFS-compatible table name for durable Mail outbox records.",
|
|
3139
|
-
"availability": "Node and browser metadata",
|
|
3140
|
-
"protocol": "arcane-mail-outbox/1",
|
|
3141
|
-
"normalization": "Exact immutable value mail_outbox"
|
|
3142
|
-
},
|
|
3143
|
-
{
|
|
3144
|
-
"id": "mail:MAX_MAIL_RESPONSE_BYTES",
|
|
3145
|
-
"name": "MAX_MAIL_RESPONSE_BYTES",
|
|
3146
|
-
"displayName": "MAX_MAIL_RESPONSE_BYTES",
|
|
3147
|
-
"kind": "constant",
|
|
3148
|
-
"signature": "const MAX_MAIL_RESPONSE_BYTES",
|
|
3149
|
-
"entrypoints": ["arcane-os/mail"],
|
|
3150
|
-
"primaryImport": "arcane-os/mail",
|
|
3151
|
-
"group": "Portable Mail",
|
|
3152
|
-
"summary": "Maximum response-body bytes admitted by the Mail HTTP transport.",
|
|
3153
|
-
"availability": "Node and browser metadata",
|
|
3154
|
-
"protocol": "Arcane Mail HTTP transport",
|
|
3155
|
-
"normalization": "Exact immutable value of 65536 bytes"
|
|
3156
|
-
},
|
|
3157
|
-
{
|
|
3158
|
-
"id": "mail:Mail",
|
|
3159
|
-
"name": "Mail",
|
|
3160
|
-
"displayName": "Mail",
|
|
3161
|
-
"kind": "class",
|
|
3162
|
-
"signature": "new Mail(config=globalThis.arcane?.config?.mail||{}, options={})",
|
|
3163
|
-
"entrypoints": ["arcane-os/mail"],
|
|
3164
|
-
"primaryImport": "arcane-os/mail",
|
|
3165
|
-
"group": "Portable Mail",
|
|
3166
|
-
"summary": "Owns the application Mail singleton, durable lifecycle, report normalization, and explicit transport selection.",
|
|
3167
|
-
"availability": "Node with injected host adapters, or browser/native WebView with durable storage and Web Locks",
|
|
3168
|
-
"protocol": "arcane-mail-outbox/1 with native Arcane.mail or bounded HTTP delivery",
|
|
3169
|
-
"normalization": "Validates bounded reports, persists before delivery, and returns frozen provider-neutral send results"
|
|
3170
|
-
},
|
|
3171
|
-
{
|
|
3172
|
-
"id": "mail:MailOutbox",
|
|
3173
|
-
"name": "MailOutbox",
|
|
3174
|
-
"displayName": "MailOutbox",
|
|
3175
|
-
"kind": "class",
|
|
3176
|
-
"signature": "new MailOutbox(options={})",
|
|
3177
|
-
"entrypoints": ["arcane-os/mail"],
|
|
3178
|
-
"primaryImport": "arcane-os/mail",
|
|
3179
|
-
"group": "Portable Mail",
|
|
3180
|
-
"summary": "Persists bounded reports before delivery and owns FIFO draining, retry classification, and explicit invalid-record maintenance.",
|
|
3181
|
-
"availability": "Node or browser with injected DBOPFS-compatible storage and a Web Locks-compatible lock manager",
|
|
3182
|
-
"protocol": "arcane-mail-outbox/1",
|
|
3183
|
-
"normalization": "Returns deeply frozen records and bounded summaries; ambiguous attempts remain same-key retries or require reconciliation"
|
|
3184
|
-
},
|
|
3185
|
-
{
|
|
3186
|
-
"id": "mail:MailTransportError",
|
|
3187
|
-
"name": "MailTransportError",
|
|
3188
|
-
"displayName": "MailTransportError",
|
|
3189
|
-
"kind": "class",
|
|
3190
|
-
"signature": "new MailTransportError(message, options={})",
|
|
3191
|
-
"entrypoints": ["arcane-os/mail"],
|
|
3192
|
-
"primaryImport": "arcane-os/mail",
|
|
3193
|
-
"group": "Portable Mail",
|
|
3194
|
-
"summary": "Normalized Mail transport failure with stable retry, uncertainty, status, and delay metadata.",
|
|
3195
|
-
"availability": "Node and browser",
|
|
3196
|
-
"protocol": "Arcane Mail HTTP transport",
|
|
3197
|
-
"normalization": "Exposes code, retryable, retryAfterMs, statusCode, and uncertain without unbounded remote detail"
|
|
3198
|
-
},
|
|
3199
|
-
{
|
|
3200
|
-
"id": "mail:createMailOutbox",
|
|
3201
|
-
"name": "createMailOutbox",
|
|
3202
|
-
"displayName": "createMailOutbox()",
|
|
3203
|
-
"kind": "function",
|
|
3204
|
-
"signature": "createMailOutbox(options)",
|
|
3205
|
-
"entrypoints": ["arcane-os/mail"],
|
|
3206
|
-
"primaryImport": "arcane-os/mail",
|
|
3207
|
-
"group": "Portable Mail",
|
|
3208
|
-
"summary": "Creates a MailOutbox from caller-owned storage, locking, delivery, and lifecycle adapters.",
|
|
3209
|
-
"availability": "Node or browser with the required injected outbox adapters",
|
|
3210
|
-
"protocol": "arcane-mail-outbox/1",
|
|
3211
|
-
"normalization": "Returns the same validated MailOutbox contract as direct construction"
|
|
3212
|
-
},
|
|
3213
|
-
{
|
|
3214
|
-
"id": "mail:default",
|
|
3215
|
-
"name": "default",
|
|
3216
|
-
"displayName": "Mail default export",
|
|
3217
|
-
"kind": "class",
|
|
3218
|
-
"signature": "default as Mail",
|
|
3219
|
-
"entrypoints": ["arcane-os/mail"],
|
|
3220
|
-
"primaryImport": "arcane-os/mail",
|
|
3221
|
-
"group": "Portable Mail",
|
|
3222
|
-
"summary": "Default package binding for the same Mail class exposed by the named export.",
|
|
3223
|
-
"availability": "Node with injected host adapters, or browser/native WebView with durable storage and Web Locks",
|
|
3224
|
-
"protocol": "arcane-mail-outbox/1 with native Arcane.mail or bounded HTTP delivery",
|
|
3225
|
-
"normalization": "Binding identity is exactly equal to the named Mail export"
|
|
3226
|
-
},
|
|
3227
|
-
{
|
|
3228
|
-
"id": "mail:normalizeMailEndpoint",
|
|
3229
|
-
"name": "normalizeMailEndpoint",
|
|
3230
|
-
"displayName": "normalizeMailEndpoint()",
|
|
3231
|
-
"kind": "function",
|
|
3232
|
-
"signature": "normalizeMailEndpoint(endpoint, base=globalThis.location?.href)",
|
|
3233
|
-
"entrypoints": ["arcane-os/mail"],
|
|
3234
|
-
"primaryImport": "arcane-os/mail",
|
|
3235
|
-
"group": "Portable Mail",
|
|
3236
|
-
"summary": "Resolves and validates one credential-free HTTPS or loopback-HTTP Mail endpoint.",
|
|
3237
|
-
"availability": "Node and browser with URL support; relative endpoints require an explicit or global base URL",
|
|
3238
|
-
"protocol": "Arcane Mail HTTP transport",
|
|
3239
|
-
"normalization": "Returns an absolute URL and rejects credentials, query strings, fragments, and insecure non-loopback transport"
|
|
3240
|
-
},
|
|
3241
|
-
{
|
|
3242
|
-
"id": "mail:resolveMailConfig",
|
|
3243
|
-
"name": "resolveMailConfig",
|
|
3244
|
-
"displayName": "resolveMailConfig()",
|
|
3245
|
-
"kind": "function",
|
|
3246
|
-
"signature": "resolveMailConfig(config=globalThis.arcane?.config?.mail||{}, options={})",
|
|
3247
|
-
"entrypoints": ["arcane-os/mail"],
|
|
3248
|
-
"primaryImport": "arcane-os/mail",
|
|
3249
|
-
"group": "Portable Mail",
|
|
3250
|
-
"summary": "Resolves application identity, key, endpoint, and timeout from explicit or host Mail configuration.",
|
|
3251
|
-
"availability": "Node with explicit configuration, or browser/native WebView with optional document and location defaults",
|
|
3252
|
-
"protocol": "Arcane Mail configuration",
|
|
3253
|
-
"normalization": "Returns a frozen appName, appKey, endpoint, and requestTimeout record without initiating delivery"
|
|
3254
|
-
},
|
|
3255
|
-
{
|
|
3256
|
-
"id": "mail:sendMailReport",
|
|
3257
|
-
"name": "sendMailReport",
|
|
3258
|
-
"displayName": "sendMailReport()",
|
|
3259
|
-
"kind": "function",
|
|
3260
|
-
"signature": "sendMailReport({ appKey, appName, endpoint, fetchImpl=globalThis.fetch, report, reportKey, requestTimeout=590000, serializedReport, signal })",
|
|
3261
|
-
"entrypoints": ["arcane-os/mail"],
|
|
3262
|
-
"primaryImport": "arcane-os/mail",
|
|
3263
|
-
"group": "Portable Mail",
|
|
3264
|
-
"summary": "Sends one immutable Mail report with an idempotency key through a bounded HTTP request.",
|
|
3265
|
-
"availability": "Node and browser with Fetch and AbortController, or an explicit fetch implementation",
|
|
3266
|
-
"protocol": "Arcane Mail HTTP transport",
|
|
3267
|
-
"normalization": "Validates request identity and body equality, bounds response bytes, and returns normalized acceptance or throws MailTransportError"
|
|
3268
|
-
},
|
|
3269
|
-
{
|
|
3270
|
-
"id": "mail:serializeMailReport",
|
|
3271
|
-
"name": "serializeMailReport",
|
|
3272
|
-
"displayName": "serializeMailReport()",
|
|
3273
|
-
"kind": "function",
|
|
3274
|
-
"signature": "serializeMailReport(report)",
|
|
3275
|
-
"entrypoints": ["arcane-os/mail"],
|
|
3276
|
-
"primaryImport": "arcane-os/mail",
|
|
3277
|
-
"group": "Portable Mail",
|
|
3278
|
-
"summary": "Serializes one JSON-object Mail report for immutable request-body comparison and delivery.",
|
|
3279
|
-
"availability": "Node and browser",
|
|
3280
|
-
"protocol": "Arcane Mail HTTP transport",
|
|
3281
|
-
"normalization": "Returns compact JSON and rejects non-object or non-serializable reports"
|
|
3282
|
-
}
|
|
3283
|
-
]
|
|
3284
|
-
}
|