arcane-os 0.2.2 → 0.3.0
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 +29 -0
- package/README.md +8 -8
- package/browser-runtime/ARCANE_SDK_BROWSER_RELEASE.json +29 -22
- package/browser-runtime/ai/ARCANE_AI_BROWSER_SPEECH_COMPONENTS.json +203 -0
- package/browser-runtime/ai/browser-kokoro-worker.mjs +11 -2
- package/browser-runtime/ai/browser-speech-artifacts.mjs +3230 -397
- package/browser-runtime/ai/browser-speech-providers.mjs +1141 -157
- package/browser-runtime/ai/browser-speech.mjs +2 -0
- package/browser-runtime/ai/browser-whisper-worker.mjs +11 -2
- package/browser-runtime/ai/model-controller.mjs +285 -95
- package/browser-runtime/ai/speech-worker-client.mjs +247 -32
- package/browser-runtime/ai/speech-worker-runtime.mjs +2310 -167
- package/browser-runtime/event-manager.mjs +1097 -1
- package/docs/architecture.md +2 -2
- package/docs/event-manager.md +155 -27
- package/docs/reference/README.md +27 -27
- package/docs/reference/ai/browser-speech-package-authority.json +835 -0
- package/docs/reference/ai/browser-speech.md +1162 -246
- package/docs/reference/ai/browser-wasm.md +18 -7
- package/docs/reference/availability-and-normalization.md +6 -3
- package/docs/reference/behavioral-testing.md +29 -6
- package/docs/reference/cli.md +117 -9
- package/docs/reference/core/arcane-ai-contracts.md +1 -1
- package/docs/reference/event-manager.md +577 -32
- package/docs/reference/inventory/package-api.json +478 -2
- package/docs/reference/inventory/runtime-components.json +108 -44
- package/docs/reference/inventory/runtime-modules.json +131 -53
- package/docs/reference/mail.md +316 -0
- package/docs/reference/protocols.md +157 -43
- package/docs/reference/runtime-components.md +258 -83
- package/docs/reference/runtime-modules.md +613 -77
- package/docs/reference/sdk-api.md +1014 -25
- package/package.json +5 -4
- package/runtime/ARCANE_RUNTIME_RELEASE.json +145 -140
- package/runtime/arcane/components/app-bar.html +34 -13
- package/runtime/arcane/components/assistant-panel.html +110 -57
- package/runtime/arcane/components/calculator.html +7 -4
- package/runtime/arcane/components/chart.html +58 -17
- package/runtime/arcane/components/chat.html +606 -136
- package/runtime/arcane/components/conversation-view.html +13 -6
- package/runtime/arcane/components/dashboard-config.html +96 -59
- package/runtime/arcane/components/data-maintenance.html +69 -14
- package/runtime/arcane/components/data-view.html +53 -7
- package/runtime/arcane/components/directory-picker.html +118 -32
- package/runtime/arcane/components/document-inspector.html +47 -10
- package/runtime/arcane/components/file-drop.html +81 -35
- package/runtime/arcane/components/file-inspector.html +72 -22
- package/runtime/arcane/components/file-manager.html +374 -79
- package/runtime/arcane/components/integration-settings.html +12 -5
- package/runtime/arcane/components/local-ai-status.html +48 -19
- package/runtime/arcane/components/markdown-document.html +161 -68
- package/runtime/arcane/components/markdown-editor.html +110 -33
- package/runtime/arcane/components/media-embed.html +8 -5
- package/runtime/arcane/components/modal.html +15 -5
- package/runtime/arcane/components/output-panel.html +28 -23
- package/runtime/arcane/components/preferences-form.html +22 -4
- package/runtime/arcane/components/record-timeline.html +18 -2
- package/runtime/arcane/components/relationship-board.html +23 -3
- package/runtime/arcane/components/screen-capture.html +10 -4
- package/runtime/arcane/components/source-code-viewer.html +76 -9
- package/runtime/arcane/components/source-explanation.html +23 -3
- package/runtime/arcane/components/speech.html +462 -384
- package/runtime/arcane/components/summary-strip.html +22 -11
- package/runtime/arcane/components/table.html +39 -21
- package/runtime/arcane/components/task-progress.html +79 -21
- package/runtime/arcane/components/terminal-workspace.html +7 -4
- package/runtime/arcane/components/theme-editor.html +7 -3
- package/runtime/arcane/components/unified-inbox.html +9 -4
- package/runtime/arcane/components/voice-transcription.html +639 -98
- package/runtime/arcane/components/weather-widget.html +5 -3
- package/runtime/arcane/components/web-navigator.html +48 -8
- package/runtime/arcane/entities/Chat.js +1 -1
- package/runtime/arcane/entities/User.js +110 -23
- package/runtime/arcane/modules/AI.js +2109 -130
- package/runtime/arcane/modules/AIProviderRuntime.js +720 -13
- package/runtime/arcane/modules/AIRuntimeState.js +109 -52
- package/runtime/arcane/modules/ApiModelDatabase.js +390 -17
- package/runtime/arcane/modules/BrowserTestSuite.js +205 -28
- package/runtime/arcane/modules/CalculatorEngine.js +63 -3
- package/runtime/arcane/modules/CommunicationAppController.js +588 -28
- package/runtime/arcane/modules/CommunicationHub.js +590 -10
- package/runtime/arcane/modules/ComponentContracts.js +470 -0
- package/runtime/arcane/modules/ConversationTimebox.js +152 -33
- package/runtime/arcane/modules/DBLS.js +40 -7
- package/runtime/arcane/modules/DBOPFS.js +35 -11
- package/runtime/arcane/modules/DataMaintenance.js +12 -2
- package/runtime/arcane/modules/Errors.js +65 -7
- package/runtime/arcane/modules/HTMLImport.js +198 -14
- package/runtime/arcane/modules/LocalAIReadinessController.js +208 -29
- package/runtime/arcane/modules/Mail.js +738 -115
- package/runtime/arcane/modules/MailOutbox.mjs +1395 -0
- package/runtime/arcane/modules/MailTransport.mjs +197 -39
- package/runtime/arcane/modules/Ollama.js +36 -1
- package/runtime/arcane/modules/OpenMeteoWeatherProvider.js +583 -7
- package/runtime/arcane/modules/PreferenceStore.js +367 -33
- package/runtime/arcane/modules/RecordReviewStore.js +322 -23
- package/runtime/arcane/modules/ScreenCapture.js +1397 -15
- package/runtime/arcane/modules/SpeechPlayback.js +438 -41
- package/runtime/arcane/modules/TerminalClient.js +277 -12
- package/runtime/arcane/modules/ThemeBootstrap.js +80 -6
- package/runtime/arcane/modules/ThemeManager.js +39 -7
- package/runtime/arcane/modules/TimeGuard.js +131 -20
- package/runtime/arcane/modules/WaitForComponent.js +386 -33
- package/schemas/arcane-lock.schema.json +2 -2
- package/src/cli/main.mjs +435 -9
- package/src/event-manager.mjs +1097 -1
- package/src/import-map.mjs +21 -3
- package/src/index.mjs +13 -0
- package/src/installed-sdk-runtime.mjs +112 -0
- package/src/mail-api.mjs +22 -0
- package/src/mail-credentials.mjs +667 -0
- package/src/mail-server.mjs +1769 -0
- package/src/mail.mjs +261 -0
- package/src/sdk-browser-runtime.mjs +85 -41
- package/src/testing-loader.mjs +7 -0
- package/src/toolchain.mjs +3 -0
- package/src/workspace.mjs +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "arcane-os",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.0",
|
|
4
4
|
"description": "Arcane OS JavaScript SDK, project-local CLI, browser runtime, and repository-portable application packager.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./src/index.mjs",
|
|
@@ -15,6 +15,7 @@
|
|
|
15
15
|
"./event-manager": "./src/event-manager.mjs",
|
|
16
16
|
"./ai/browser-wasm": "./browser-runtime/ai/browser-wasm.mjs",
|
|
17
17
|
"./ai/browser-speech": "./browser-runtime/ai/browser-speech.mjs",
|
|
18
|
+
"./mail": "./src/mail-api.mjs",
|
|
18
19
|
"./testing": "./src/testing.mjs",
|
|
19
20
|
"./targets": "./src/targets/index.mjs",
|
|
20
21
|
"./native": "./src/native-plan.mjs",
|
|
@@ -52,9 +53,9 @@
|
|
|
52
53
|
"scripts": {
|
|
53
54
|
"test": "npm run test:unit && npm run test:functional && npm run test:integration && npm run test:regression",
|
|
54
55
|
"test:release": "node ./bin/arcane-test.mjs test/npm-release.test.mjs",
|
|
55
|
-
"test:unit": "node ./bin/arcane-test.mjs test/app-descriptor.test.mjs test/app-schema.test.mjs test/contracts.test.mjs test/doctor.test.mjs test/targets.test.mjs test/workspace-operation-lock.test.mjs",
|
|
56
|
-
"test:functional": "node ./bin/arcane-test.mjs test/browser-speech-providers.test.mjs test/cli.test.mjs test/dbopfs-document-library.test.mjs test/dev-server.test.mjs test/dom-event-instrumentation.test.mjs test/event-manager.test.mjs test/events.test.mjs test/import-map.test.mjs test/packaging.test.mjs test/persistent-ai-chat-session.test.mjs test/reference-completeness.test.mjs test/runtime-api-behavior.test.mjs test/runtime-sync.test.mjs test/runtime.test.mjs test/scaffold.test.mjs test/site.test.mjs test/update-check.test.mjs",
|
|
57
|
-
"test:integration": "node ./bin/arcane-test.mjs test/integrated-shared.test.mjs test/integrated-workspace.test.mjs test/native-plan.test.mjs test/native-provider-loader.test.mjs test/npm-release.test.mjs test/release-bundle.test.mjs test/release-capability-smoke.test.mjs test/shared-payload-batch.test.mjs test/tarball.test.mjs test/wllama-webgpu-runtime.test.mjs",
|
|
56
|
+
"test:unit": "node ./bin/arcane-test.mjs test/app-descriptor.test.mjs test/app-schema.test.mjs test/contracts.test.mjs test/doctor.test.mjs test/mail-credentials.test.mjs test/mail-outbox.test.mjs test/mail-public-api.test.mjs test/mail-send.test.mjs test/mail-transport.test.mjs test/targets.test.mjs test/workspace-operation-lock.test.mjs",
|
|
57
|
+
"test:functional": "node ./bin/arcane-test.mjs test/browser-speech-providers.test.mjs test/cli.test.mjs test/dbopfs-document-library.test.mjs test/dev-server.test.mjs test/dom-event-instrumentation.test.mjs test/event-manager.test.mjs test/events.test.mjs test/import-map.test.mjs test/mail-cli.test.mjs test/mail-runtime.test.mjs test/mail-server.test.mjs test/packaging.test.mjs test/persistent-ai-chat-session.test.mjs test/reference-completeness.test.mjs test/runtime-api-behavior.test.mjs test/runtime-sync.test.mjs test/runtime.test.mjs test/scaffold.test.mjs test/site.test.mjs test/update-check.test.mjs",
|
|
58
|
+
"test:integration": "node ./bin/arcane-test.mjs test/integrated-shared.test.mjs test/integrated-workspace.test.mjs test/mail-browser.test.mjs test/native-plan.test.mjs test/native-provider-loader.test.mjs test/npm-release.test.mjs test/release-bundle.test.mjs test/release-capability-smoke.test.mjs test/shared-payload-batch.test.mjs test/tarball.test.mjs test/wllama-webgpu-runtime.test.mjs",
|
|
58
59
|
"test:regression": "node ./bin/arcane-test.mjs test/channel-workflows.test.mjs test/native-provider-generation.test.mjs test/testing.test.mjs test/test-sets.test.mjs",
|
|
59
60
|
"check": "node tools/check-source.mjs && node tools/runtime-manifest.mjs --verify && node tools/sdk-browser-runtime-manifest.mjs --verify && npm test",
|
|
60
61
|
"check:release": "node tools/check-source.mjs --package-only && node tools/runtime-manifest.mjs --verify && node tools/sdk-browser-runtime-manifest.mjs --verify && npm run test:release",
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"schemaVersion": 1,
|
|
3
3
|
"builder": "arcane-sdk-runtime-v1",
|
|
4
|
-
"sdkVersion": "0.
|
|
4
|
+
"sdkVersion": "0.3.0",
|
|
5
5
|
"source": {
|
|
6
6
|
"authority": "sdk-canonical",
|
|
7
7
|
"repository": "https://github.com/TheWizardNexus/arcane-os-sdk.git",
|
|
@@ -13,79 +13,79 @@
|
|
|
13
13
|
"bundleVersion": "0.8.12"
|
|
14
14
|
}
|
|
15
15
|
},
|
|
16
|
-
"fileCount":
|
|
17
|
-
"totalBytes":
|
|
18
|
-
"contentSha256": "
|
|
16
|
+
"fileCount": 161,
|
|
17
|
+
"totalBytes": 4160019,
|
|
18
|
+
"contentSha256": "a8e40b65723ed608d68674885bea2b39d68569688a445481c858768d2a0ab7cb",
|
|
19
19
|
"files": [
|
|
20
20
|
{
|
|
21
21
|
"path": "arcane/components/app-bar.html",
|
|
22
|
-
"bytes":
|
|
23
|
-
"sha256": "
|
|
22
|
+
"bytes": 14675,
|
|
23
|
+
"sha256": "9a73a6ef525b4120813a40b9c1adc917907fec17f3cddb492e8ceddfde86df97"
|
|
24
24
|
},
|
|
25
25
|
{
|
|
26
26
|
"path": "arcane/components/assistant-panel.html",
|
|
27
|
-
"bytes":
|
|
28
|
-
"sha256": "
|
|
27
|
+
"bytes": 24473,
|
|
28
|
+
"sha256": "1a43aec8e442bea2c481b2c9d3233d7a3820d0c7e3978c32b1c0852220b4e368"
|
|
29
29
|
},
|
|
30
30
|
{
|
|
31
31
|
"path": "arcane/components/calculator.html",
|
|
32
|
-
"bytes":
|
|
33
|
-
"sha256": "
|
|
32
|
+
"bytes": 4101,
|
|
33
|
+
"sha256": "31b6421fb08b8db6be28da6d4d46a8a2d592725c8aff88e33c544ee7cd920f8f"
|
|
34
34
|
},
|
|
35
35
|
{
|
|
36
36
|
"path": "arcane/components/chart.html",
|
|
37
|
-
"bytes":
|
|
38
|
-
"sha256": "
|
|
37
|
+
"bytes": 21464,
|
|
38
|
+
"sha256": "b16a76ccceed19f9e6411f86e77fe8e7ff8ac6caa81bb2d56d7457e02b5e93be"
|
|
39
39
|
},
|
|
40
40
|
{
|
|
41
41
|
"path": "arcane/components/chat.html",
|
|
42
|
-
"bytes":
|
|
43
|
-
"sha256": "
|
|
42
|
+
"bytes": 78426,
|
|
43
|
+
"sha256": "2a0fb0ad5a3779cd178ed8a376ef0694f07617984cc5effee8b0f0992b65b470"
|
|
44
44
|
},
|
|
45
45
|
{
|
|
46
46
|
"path": "arcane/components/conversation-view.html",
|
|
47
|
-
"bytes":
|
|
48
|
-
"sha256": "
|
|
47
|
+
"bytes": 7075,
|
|
48
|
+
"sha256": "77e0933a90b97c6194927c2d589b8915b454f8bdb312bd3684a10feac96f634f"
|
|
49
49
|
},
|
|
50
50
|
{
|
|
51
51
|
"path": "arcane/components/dashboard-config.html",
|
|
52
|
-
"bytes":
|
|
53
|
-
"sha256": "
|
|
52
|
+
"bytes": 13320,
|
|
53
|
+
"sha256": "7a4d8129cacd5a10853345411c816ebc625d75ea567bff8e7ed61ce6e4e89de4"
|
|
54
54
|
},
|
|
55
55
|
{
|
|
56
56
|
"path": "arcane/components/data-maintenance.html",
|
|
57
|
-
"bytes":
|
|
58
|
-
"sha256": "
|
|
57
|
+
"bytes": 5936,
|
|
58
|
+
"sha256": "8d5160cda541e8f736c03d0907952419a9ef4783294caf5f4b537ce932d5ef0f"
|
|
59
59
|
},
|
|
60
60
|
{
|
|
61
61
|
"path": "arcane/components/data-view.html",
|
|
62
|
-
"bytes":
|
|
63
|
-
"sha256": "
|
|
62
|
+
"bytes": 4164,
|
|
63
|
+
"sha256": "9aff5945646deff231f8baaaf7958bbd74c612510e38e8c742bb4c7a25f05b53"
|
|
64
64
|
},
|
|
65
65
|
{
|
|
66
66
|
"path": "arcane/components/directory-picker.html",
|
|
67
|
-
"bytes":
|
|
68
|
-
"sha256": "
|
|
67
|
+
"bytes": 10494,
|
|
68
|
+
"sha256": "42107f6ffe77695883db5b37f6cf245f73571bb6396d8e5cfcfad95cd5a33743"
|
|
69
69
|
},
|
|
70
70
|
{
|
|
71
71
|
"path": "arcane/components/document-inspector.html",
|
|
72
|
-
"bytes":
|
|
73
|
-
"sha256": "
|
|
72
|
+
"bytes": 19395,
|
|
73
|
+
"sha256": "e0009e855af9157009315f1c6f41520c034d065cf8aff115951fb62be87191cf"
|
|
74
74
|
},
|
|
75
75
|
{
|
|
76
76
|
"path": "arcane/components/file-drop.html",
|
|
77
|
-
"bytes":
|
|
78
|
-
"sha256": "
|
|
77
|
+
"bytes": 10903,
|
|
78
|
+
"sha256": "51a97d536be28045a6eeec3ca00e2c5d1079022f940597374374f13d9eeee8d7"
|
|
79
79
|
},
|
|
80
80
|
{
|
|
81
81
|
"path": "arcane/components/file-inspector.html",
|
|
82
|
-
"bytes":
|
|
83
|
-
"sha256": "
|
|
82
|
+
"bytes": 12644,
|
|
83
|
+
"sha256": "fdf1992c41e0cf1e138da969fd44db92894146f5b4ae4866dc4f6616ad445c94"
|
|
84
84
|
},
|
|
85
85
|
{
|
|
86
86
|
"path": "arcane/components/file-manager.html",
|
|
87
|
-
"bytes":
|
|
88
|
-
"sha256": "
|
|
87
|
+
"bytes": 59916,
|
|
88
|
+
"sha256": "314592c4d6028da3d2cf9f545697743acd179ff17f68476ebc09fee365121bb2"
|
|
89
89
|
},
|
|
90
90
|
{
|
|
91
91
|
"path": "arcane/components/header.html",
|
|
@@ -94,98 +94,98 @@
|
|
|
94
94
|
},
|
|
95
95
|
{
|
|
96
96
|
"path": "arcane/components/integration-settings.html",
|
|
97
|
-
"bytes":
|
|
98
|
-
"sha256": "
|
|
97
|
+
"bytes": 6442,
|
|
98
|
+
"sha256": "d4060f34c4b959c66430d9b8011f7e4eaef53c2af495047ff400a887e0ae714f"
|
|
99
99
|
},
|
|
100
100
|
{
|
|
101
101
|
"path": "arcane/components/local-ai-status.html",
|
|
102
|
-
"bytes":
|
|
103
|
-
"sha256": "
|
|
102
|
+
"bytes": 15259,
|
|
103
|
+
"sha256": "de337b24a94bd70b64bae5fcce99d19d8561497fd73e38c544c3cfc30b7baf46"
|
|
104
104
|
},
|
|
105
105
|
{
|
|
106
106
|
"path": "arcane/components/markdown-document.html",
|
|
107
|
-
"bytes":
|
|
108
|
-
"sha256": "
|
|
107
|
+
"bytes": 37537,
|
|
108
|
+
"sha256": "8f11a3d92a8008c7d09198183e848668b33b2d61c2640b5dfdc2fdfb45f335d4"
|
|
109
109
|
},
|
|
110
110
|
{
|
|
111
111
|
"path": "arcane/components/markdown-editor.html",
|
|
112
|
-
"bytes":
|
|
113
|
-
"sha256": "
|
|
112
|
+
"bytes": 13234,
|
|
113
|
+
"sha256": "a141869dc24e7933dcc205fbb11f8e7717314eef8120335b2e68920725c6622a"
|
|
114
114
|
},
|
|
115
115
|
{
|
|
116
116
|
"path": "arcane/components/media-embed.html",
|
|
117
|
-
"bytes":
|
|
118
|
-
"sha256": "
|
|
117
|
+
"bytes": 4736,
|
|
118
|
+
"sha256": "a458d50f776797b5da109a9a112abd599ee3577b208cac3009b48ff0dcc76dda"
|
|
119
119
|
},
|
|
120
120
|
{
|
|
121
121
|
"path": "arcane/components/modal.html",
|
|
122
|
-
"bytes":
|
|
123
|
-
"sha256": "
|
|
122
|
+
"bytes": 13248,
|
|
123
|
+
"sha256": "c47aeed9162eddc574a49d4c151f70403cf471bc4a2daa38461a322326468097"
|
|
124
124
|
},
|
|
125
125
|
{
|
|
126
126
|
"path": "arcane/components/output-panel.html",
|
|
127
|
-
"bytes":
|
|
128
|
-
"sha256": "
|
|
127
|
+
"bytes": 10194,
|
|
128
|
+
"sha256": "2988b243db94738a8fc426a7331ed15b7f5b436eceb3bfe008e30dbe9ae39327"
|
|
129
129
|
},
|
|
130
130
|
{
|
|
131
131
|
"path": "arcane/components/preferences-form.html",
|
|
132
|
-
"bytes":
|
|
133
|
-
"sha256": "
|
|
132
|
+
"bytes": 6708,
|
|
133
|
+
"sha256": "9f4734a9a490f470c7e846ff063f68bfbed1a5e93eff14f268d0996037b06062"
|
|
134
134
|
},
|
|
135
135
|
{
|
|
136
136
|
"path": "arcane/components/record-timeline.html",
|
|
137
|
-
"bytes":
|
|
138
|
-
"sha256": "
|
|
137
|
+
"bytes": 6936,
|
|
138
|
+
"sha256": "1a72e239692402614b838b186792ee8e04cce993258ce6b98a130aed87d63871"
|
|
139
139
|
},
|
|
140
140
|
{
|
|
141
141
|
"path": "arcane/components/relationship-board.html",
|
|
142
|
-
"bytes":
|
|
143
|
-
"sha256": "
|
|
142
|
+
"bytes": 8837,
|
|
143
|
+
"sha256": "bc38e042084ca9b8900fa8e55fb5694b6eaf75763d19eee76de2b1e5a20b164e"
|
|
144
144
|
},
|
|
145
145
|
{
|
|
146
146
|
"path": "arcane/components/screen-capture.html",
|
|
147
|
-
"bytes":
|
|
148
|
-
"sha256": "
|
|
147
|
+
"bytes": 6632,
|
|
148
|
+
"sha256": "c411d29cce009880ba0e9f5b8c8778401bf3d3008bb8e590280cfe98f0b42978"
|
|
149
149
|
},
|
|
150
150
|
{
|
|
151
151
|
"path": "arcane/components/source-code-viewer.html",
|
|
152
|
-
"bytes":
|
|
153
|
-
"sha256": "
|
|
152
|
+
"bytes": 16816,
|
|
153
|
+
"sha256": "cf71f085ec9276b9cc392235e006830079b581977a5553a7e5d769f1c1230140"
|
|
154
154
|
},
|
|
155
155
|
{
|
|
156
156
|
"path": "arcane/components/source-explanation.html",
|
|
157
|
-
"bytes":
|
|
158
|
-
"sha256": "
|
|
157
|
+
"bytes": 13655,
|
|
158
|
+
"sha256": "24dc4b15ad6ade9316b3dfc975813113d878e307cad99d3f48f8984409b09932"
|
|
159
159
|
},
|
|
160
160
|
{
|
|
161
161
|
"path": "arcane/components/speech.html",
|
|
162
|
-
"bytes":
|
|
163
|
-
"sha256": "
|
|
162
|
+
"bytes": 52271,
|
|
163
|
+
"sha256": "1cb0645b6fb3d9f63c20c6338c9fbf910359ccfd5b97b087e1fc676a8cdb5fc6"
|
|
164
164
|
},
|
|
165
165
|
{
|
|
166
166
|
"path": "arcane/components/summary-strip.html",
|
|
167
|
-
"bytes":
|
|
168
|
-
"sha256": "
|
|
167
|
+
"bytes": 6656,
|
|
168
|
+
"sha256": "7bebd2ed5c0452120cc40fe85cbe63495d514ecb4cb6a2ae51c72b9354a2801f"
|
|
169
169
|
},
|
|
170
170
|
{
|
|
171
171
|
"path": "arcane/components/table.html",
|
|
172
|
-
"bytes":
|
|
173
|
-
"sha256": "
|
|
172
|
+
"bytes": 2569,
|
|
173
|
+
"sha256": "dfd9e2f6f16758a023c80a37aebfdbcad05c6caa7633215a8f6ac97bc39bd0f7"
|
|
174
174
|
},
|
|
175
175
|
{
|
|
176
176
|
"path": "arcane/components/task-progress.html",
|
|
177
|
-
"bytes":
|
|
178
|
-
"sha256": "
|
|
177
|
+
"bytes": 11874,
|
|
178
|
+
"sha256": "305404fd232fb914419f71c08e99adab615198ea49090bc2d6acf3b49fc3a237"
|
|
179
179
|
},
|
|
180
180
|
{
|
|
181
181
|
"path": "arcane/components/terminal-workspace.html",
|
|
182
|
-
"bytes":
|
|
183
|
-
"sha256": "
|
|
182
|
+
"bytes": 14569,
|
|
183
|
+
"sha256": "2f3735b7773a73384058b53ec4a9608c06e3904d17425ee15b4237453da6cbcc"
|
|
184
184
|
},
|
|
185
185
|
{
|
|
186
186
|
"path": "arcane/components/theme-editor.html",
|
|
187
|
-
"bytes":
|
|
188
|
-
"sha256": "
|
|
187
|
+
"bytes": 5218,
|
|
188
|
+
"sha256": "c22e7f75dda702ab24cbcb4d93fc3d36c5e35e263783d698929c762764b7458d"
|
|
189
189
|
},
|
|
190
190
|
{
|
|
191
191
|
"path": "arcane/components/theme-switcher.html",
|
|
@@ -194,23 +194,23 @@
|
|
|
194
194
|
},
|
|
195
195
|
{
|
|
196
196
|
"path": "arcane/components/unified-inbox.html",
|
|
197
|
-
"bytes":
|
|
198
|
-
"sha256": "
|
|
197
|
+
"bytes": 5582,
|
|
198
|
+
"sha256": "2fa5ea8c48116b22a6e8d32206f21357245c885657d6f727c478c2e53169dcf5"
|
|
199
199
|
},
|
|
200
200
|
{
|
|
201
201
|
"path": "arcane/components/voice-transcription.html",
|
|
202
|
-
"bytes":
|
|
203
|
-
"sha256": "
|
|
202
|
+
"bytes": 32428,
|
|
203
|
+
"sha256": "a41a2500c3d8c79681da58725b293202e71f564b82aa77b1f10ba45e58833814"
|
|
204
204
|
},
|
|
205
205
|
{
|
|
206
206
|
"path": "arcane/components/weather-widget.html",
|
|
207
|
-
"bytes":
|
|
208
|
-
"sha256": "
|
|
207
|
+
"bytes": 5799,
|
|
208
|
+
"sha256": "a8aab7262dc67c976f23f1a124cf9c3e037ee1dc44750607509bb0fb967fe7a1"
|
|
209
209
|
},
|
|
210
210
|
{
|
|
211
211
|
"path": "arcane/components/web-navigator.html",
|
|
212
|
-
"bytes":
|
|
213
|
-
"sha256": "
|
|
212
|
+
"bytes": 12507,
|
|
213
|
+
"sha256": "e1ab1278df2ab5676e93a3ef88fc02fa79e4e532ec0fadcef96669cc5d875696"
|
|
214
214
|
},
|
|
215
215
|
{
|
|
216
216
|
"path": "arcane/css/communications.css",
|
|
@@ -259,8 +259,8 @@
|
|
|
259
259
|
},
|
|
260
260
|
{
|
|
261
261
|
"path": "arcane/entities/Chat.js",
|
|
262
|
-
"bytes":
|
|
263
|
-
"sha256": "
|
|
262
|
+
"bytes": 25362,
|
|
263
|
+
"sha256": "8052338be05d2a8a9c8e740bf1fedc456e27dbe98e97b0676ee609a6aa817652"
|
|
264
264
|
},
|
|
265
265
|
{
|
|
266
266
|
"path": "arcane/entities/CommunicationMessage.js",
|
|
@@ -314,8 +314,8 @@
|
|
|
314
314
|
},
|
|
315
315
|
{
|
|
316
316
|
"path": "arcane/entities/User.js",
|
|
317
|
-
"bytes":
|
|
318
|
-
"sha256": "
|
|
317
|
+
"bytes": 25325,
|
|
318
|
+
"sha256": "4a6cfe6592177ca392168347d8ea024971cb3719ef6ccb093c11864e3ff8f59f"
|
|
319
319
|
},
|
|
320
320
|
{
|
|
321
321
|
"path": "arcane/entities/Weather.js",
|
|
@@ -374,8 +374,8 @@
|
|
|
374
374
|
},
|
|
375
375
|
{
|
|
376
376
|
"path": "arcane/modules/AI.js",
|
|
377
|
-
"bytes":
|
|
378
|
-
"sha256": "
|
|
377
|
+
"bytes": 201054,
|
|
378
|
+
"sha256": "ceaa8089f2f5a2f59c776eea3e54a005dcf7eff1c701d2a8f45a02b0c4672875"
|
|
379
379
|
},
|
|
380
380
|
{
|
|
381
381
|
"path": "arcane/modules/AIPreferenceRuntime.js",
|
|
@@ -389,8 +389,8 @@
|
|
|
389
389
|
},
|
|
390
390
|
{
|
|
391
391
|
"path": "arcane/modules/AIProviderRuntime.js",
|
|
392
|
-
"bytes":
|
|
393
|
-
"sha256": "
|
|
392
|
+
"bytes": 122595,
|
|
393
|
+
"sha256": "054a19ef6b5aa9569fa595ff3fde3edf0c7341c1c5059856a208b8781e4f2625"
|
|
394
394
|
},
|
|
395
395
|
{
|
|
396
396
|
"path": "arcane/modules/AIResponseLength.js",
|
|
@@ -404,8 +404,8 @@
|
|
|
404
404
|
},
|
|
405
405
|
{
|
|
406
406
|
"path": "arcane/modules/AIRuntimeState.js",
|
|
407
|
-
"bytes":
|
|
408
|
-
"sha256": "
|
|
407
|
+
"bytes": 27346,
|
|
408
|
+
"sha256": "6f16f56724399db365b7078341c72ced0e926ce16177557b8b763fd02a9318ff"
|
|
409
409
|
},
|
|
410
410
|
{
|
|
411
411
|
"path": "arcane/modules/AnsiText.js",
|
|
@@ -414,8 +414,8 @@
|
|
|
414
414
|
},
|
|
415
415
|
{
|
|
416
416
|
"path": "arcane/modules/ApiModelDatabase.js",
|
|
417
|
-
"bytes":
|
|
418
|
-
"sha256": "
|
|
417
|
+
"bytes": 17085,
|
|
418
|
+
"sha256": "7544af3e7503e23d71954a4a36c95372c83a00df594d897bfba22539be85a28c"
|
|
419
419
|
},
|
|
420
420
|
{
|
|
421
421
|
"path": "arcane/modules/AppDataScope.js",
|
|
@@ -449,13 +449,13 @@
|
|
|
449
449
|
},
|
|
450
450
|
{
|
|
451
451
|
"path": "arcane/modules/BrowserTestSuite.js",
|
|
452
|
-
"bytes":
|
|
453
|
-
"sha256": "
|
|
452
|
+
"bytes": 20369,
|
|
453
|
+
"sha256": "439f43268288b714dc2032468a5e3563f7d1175945afcea23a02c02ede54e365"
|
|
454
454
|
},
|
|
455
455
|
{
|
|
456
456
|
"path": "arcane/modules/CalculatorEngine.js",
|
|
457
|
-
"bytes":
|
|
458
|
-
"sha256": "
|
|
457
|
+
"bytes": 5875,
|
|
458
|
+
"sha256": "90f98f53c11e551f9b4623f0887b3fe51e3cc221c8f93ffbca8a9b619949c446"
|
|
459
459
|
},
|
|
460
460
|
{
|
|
461
461
|
"path": "arcane/modules/CaseEvidenceIndexer.js",
|
|
@@ -474,13 +474,13 @@
|
|
|
474
474
|
},
|
|
475
475
|
{
|
|
476
476
|
"path": "arcane/modules/CommunicationAppController.js",
|
|
477
|
-
"bytes":
|
|
478
|
-
"sha256": "
|
|
477
|
+
"bytes": 18705,
|
|
478
|
+
"sha256": "8b9d77c9589d28b2da55a93e2ee7e4d7dd37285992bc3b93888825d84d8cf540"
|
|
479
479
|
},
|
|
480
480
|
{
|
|
481
481
|
"path": "arcane/modules/CommunicationHub.js",
|
|
482
|
-
"bytes":
|
|
483
|
-
"sha256": "
|
|
482
|
+
"bytes": 20437,
|
|
483
|
+
"sha256": "f0bc2de132bd2471d189e81ae56c548cbe5bd288150514f7e33e5c940473b66b"
|
|
484
484
|
},
|
|
485
485
|
{
|
|
486
486
|
"path": "arcane/modules/CommunicationPreferences.js",
|
|
@@ -494,8 +494,8 @@
|
|
|
494
494
|
},
|
|
495
495
|
{
|
|
496
496
|
"path": "arcane/modules/ComponentContracts.js",
|
|
497
|
-
"bytes":
|
|
498
|
-
"sha256": "
|
|
497
|
+
"bytes": 35706,
|
|
498
|
+
"sha256": "21bb0578d7f81c937fde04120c0040961d914a0dd34e381df829841dc98c3ef2"
|
|
499
499
|
},
|
|
500
500
|
{
|
|
501
501
|
"path": "arcane/modules/ConfiguredAIChatSession.js",
|
|
@@ -514,8 +514,8 @@
|
|
|
514
514
|
},
|
|
515
515
|
{
|
|
516
516
|
"path": "arcane/modules/ConversationTimebox.js",
|
|
517
|
-
"bytes":
|
|
518
|
-
"sha256": "
|
|
517
|
+
"bytes": 24406,
|
|
518
|
+
"sha256": "ae73be462a5264114c38cb3b325709cbfc25f1e6da39d651a8f8a8c26fb4e5fe"
|
|
519
519
|
},
|
|
520
520
|
{
|
|
521
521
|
"path": "arcane/modules/CoreLocalModelCatalog.js",
|
|
@@ -524,13 +524,13 @@
|
|
|
524
524
|
},
|
|
525
525
|
{
|
|
526
526
|
"path": "arcane/modules/DBLS.js",
|
|
527
|
-
"bytes":
|
|
528
|
-
"sha256": "
|
|
527
|
+
"bytes": 5403,
|
|
528
|
+
"sha256": "5ff348c1be9d83e31e58a7a0fd480a08f9b778d9edfcf792ca217e587ebb3f67"
|
|
529
529
|
},
|
|
530
530
|
{
|
|
531
531
|
"path": "arcane/modules/DBOPFS.js",
|
|
532
|
-
"bytes":
|
|
533
|
-
"sha256": "
|
|
532
|
+
"bytes": 30894,
|
|
533
|
+
"sha256": "3bf9033dbe5064801e92bf15764e88b22cd14e706b2cf44ed770d54f42e762c2"
|
|
534
534
|
},
|
|
535
535
|
{
|
|
536
536
|
"path": "arcane/modules/DBOPFSDocumentLibrary.js",
|
|
@@ -544,8 +544,8 @@
|
|
|
544
544
|
},
|
|
545
545
|
{
|
|
546
546
|
"path": "arcane/modules/DataMaintenance.js",
|
|
547
|
-
"bytes":
|
|
548
|
-
"sha256": "
|
|
547
|
+
"bytes": 2623,
|
|
548
|
+
"sha256": "462dc4e83d5e5572ff5a3994981a50c89a1c7ebe02f47e3384aef5c2d31f29e8"
|
|
549
549
|
},
|
|
550
550
|
{
|
|
551
551
|
"path": "arcane/modules/DevelopmentWorkspace.js",
|
|
@@ -569,8 +569,8 @@
|
|
|
569
569
|
},
|
|
570
570
|
{
|
|
571
571
|
"path": "arcane/modules/Errors.js",
|
|
572
|
-
"bytes":
|
|
573
|
-
"sha256": "
|
|
572
|
+
"bytes": 34987,
|
|
573
|
+
"sha256": "fe4dc569dc997c8d0635e8d389c7bafc3fc3c217d30d00b1e940c78fd7569032"
|
|
574
574
|
},
|
|
575
575
|
{
|
|
576
576
|
"path": "arcane/modules/GifEncoder.js",
|
|
@@ -579,8 +579,8 @@
|
|
|
579
579
|
},
|
|
580
580
|
{
|
|
581
581
|
"path": "arcane/modules/HTMLImport.js",
|
|
582
|
-
"bytes":
|
|
583
|
-
"sha256": "
|
|
582
|
+
"bytes": 9712,
|
|
583
|
+
"sha256": "71da0c0601f3f9a2c5f6fdebba4c00eb6c4c2b03e3e1b6a1ee9f4733f115db54"
|
|
584
584
|
},
|
|
585
585
|
{
|
|
586
586
|
"path": "arcane/modules/InMemoryCommunicationProvider.js",
|
|
@@ -599,8 +599,8 @@
|
|
|
599
599
|
},
|
|
600
600
|
{
|
|
601
601
|
"path": "arcane/modules/LocalAIReadinessController.js",
|
|
602
|
-
"bytes":
|
|
603
|
-
"sha256": "
|
|
602
|
+
"bytes": 10154,
|
|
603
|
+
"sha256": "ce9b6861e2913c9ae644c1d10a82541f32d6ec9a1c5bc7a5f61ad4272cc6c49f"
|
|
604
604
|
},
|
|
605
605
|
{
|
|
606
606
|
"path": "arcane/modules/MD.js",
|
|
@@ -609,13 +609,18 @@
|
|
|
609
609
|
},
|
|
610
610
|
{
|
|
611
611
|
"path": "arcane/modules/Mail.js",
|
|
612
|
-
"bytes":
|
|
613
|
-
"sha256": "
|
|
612
|
+
"bytes": 34279,
|
|
613
|
+
"sha256": "f1bb1f4555e9923d009c8d01429359dfccb8ca6a391bdb0e214b21fb9ba7df29"
|
|
614
|
+
},
|
|
615
|
+
{
|
|
616
|
+
"path": "arcane/modules/MailOutbox.mjs",
|
|
617
|
+
"bytes": 49808,
|
|
618
|
+
"sha256": "2f1d6419d158deb2a9cd33061323f78e886b0c40478372d15267d74f265c1833"
|
|
614
619
|
},
|
|
615
620
|
{
|
|
616
621
|
"path": "arcane/modules/MailTransport.mjs",
|
|
617
|
-
"bytes":
|
|
618
|
-
"sha256": "
|
|
622
|
+
"bytes": 12469,
|
|
623
|
+
"sha256": "13e8c9285fe686295c56195891d4183c60459cc6a795ae467481ef70ae40f639"
|
|
619
624
|
},
|
|
620
625
|
{
|
|
621
626
|
"path": "arcane/modules/Marked.min.js",
|
|
@@ -639,8 +644,8 @@
|
|
|
639
644
|
},
|
|
640
645
|
{
|
|
641
646
|
"path": "arcane/modules/Ollama.js",
|
|
642
|
-
"bytes":
|
|
643
|
-
"sha256": "
|
|
647
|
+
"bytes": 3870,
|
|
648
|
+
"sha256": "53818a876ef1406a074e7d4bc1aaac667ed1a8380432e24a74166db3f13444b4"
|
|
644
649
|
},
|
|
645
650
|
{
|
|
646
651
|
"path": "arcane/modules/OllamaModelIdentifier.js",
|
|
@@ -654,8 +659,8 @@
|
|
|
654
659
|
},
|
|
655
660
|
{
|
|
656
661
|
"path": "arcane/modules/OpenMeteoWeatherProvider.js",
|
|
657
|
-
"bytes":
|
|
658
|
-
"sha256": "
|
|
662
|
+
"bytes": 24014,
|
|
663
|
+
"sha256": "dc61676aa22485021b037fcb6b935e8d0dacd15fbc36531c2ff03a9f3508b995"
|
|
659
664
|
},
|
|
660
665
|
{
|
|
661
666
|
"path": "arcane/modules/PersistentAIChatSession.js",
|
|
@@ -664,8 +669,8 @@
|
|
|
664
669
|
},
|
|
665
670
|
{
|
|
666
671
|
"path": "arcane/modules/PreferenceStore.js",
|
|
667
|
-
"bytes":
|
|
668
|
-
"sha256": "
|
|
672
|
+
"bytes": 15233,
|
|
673
|
+
"sha256": "80a44099a592c8914c0c2fe0bf124896e7d016ef307b23dd55062f4bc2343a6a"
|
|
669
674
|
},
|
|
670
675
|
{
|
|
671
676
|
"path": "arcane/modules/QRCode.min.js",
|
|
@@ -689,8 +694,8 @@
|
|
|
689
694
|
},
|
|
690
695
|
{
|
|
691
696
|
"path": "arcane/modules/RecordReviewStore.js",
|
|
692
|
-
"bytes":
|
|
693
|
-
"sha256": "
|
|
697
|
+
"bytes": 13642,
|
|
698
|
+
"sha256": "f5ba5296add8d30a5ca23400ca70c73d593a0b7ba422f1166e445178966dde37"
|
|
694
699
|
},
|
|
695
700
|
{
|
|
696
701
|
"path": "arcane/modules/RevocableProjectionLedger.js",
|
|
@@ -714,13 +719,13 @@
|
|
|
714
719
|
},
|
|
715
720
|
{
|
|
716
721
|
"path": "arcane/modules/ScreenCapture.js",
|
|
717
|
-
"bytes":
|
|
718
|
-
"sha256": "
|
|
722
|
+
"bytes": 54484,
|
|
723
|
+
"sha256": "43c9f469df7d7fb810b2976bdc4364343a311b6e9565bf38f78c54c6cf692233"
|
|
719
724
|
},
|
|
720
725
|
{
|
|
721
726
|
"path": "arcane/modules/SpeechPlayback.js",
|
|
722
|
-
"bytes":
|
|
723
|
-
"sha256": "
|
|
727
|
+
"bytes": 35512,
|
|
728
|
+
"sha256": "c8936533c190996394a215e40f46074bde136c10c0bdca303848e1f789f30e53"
|
|
724
729
|
},
|
|
725
730
|
{
|
|
726
731
|
"path": "arcane/modules/StaticDocumentCatalog.js",
|
|
@@ -744,8 +749,8 @@
|
|
|
744
749
|
},
|
|
745
750
|
{
|
|
746
751
|
"path": "arcane/modules/TerminalClient.js",
|
|
747
|
-
"bytes":
|
|
748
|
-
"sha256": "
|
|
752
|
+
"bytes": 11801,
|
|
753
|
+
"sha256": "8fedad71db45a2a6d2cf3989127857d493224a0c204029e0306010348fb3b5c0"
|
|
749
754
|
},
|
|
750
755
|
{
|
|
751
756
|
"path": "arcane/modules/TerminalCommandRegistry.js",
|
|
@@ -754,18 +759,18 @@
|
|
|
754
759
|
},
|
|
755
760
|
{
|
|
756
761
|
"path": "arcane/modules/ThemeBootstrap.js",
|
|
757
|
-
"bytes":
|
|
758
|
-
"sha256": "
|
|
762
|
+
"bytes": 3397,
|
|
763
|
+
"sha256": "d11578a3753821a9bf361e4303f392d36c298c1ec1df4e03c299410def026105"
|
|
759
764
|
},
|
|
760
765
|
{
|
|
761
766
|
"path": "arcane/modules/ThemeManager.js",
|
|
762
|
-
"bytes":
|
|
763
|
-
"sha256": "
|
|
767
|
+
"bytes": 6375,
|
|
768
|
+
"sha256": "c23b6e62c56a0d07cd9caf3435bfa902a3d7131f075223cd464a415bccab2136"
|
|
764
769
|
},
|
|
765
770
|
{
|
|
766
771
|
"path": "arcane/modules/TimeGuard.js",
|
|
767
|
-
"bytes":
|
|
768
|
-
"sha256": "
|
|
772
|
+
"bytes": 7104,
|
|
773
|
+
"sha256": "d2e3ba4979d94354d0b1f345f6f1c66f49044e3e8543db430f8db8624141118b"
|
|
769
774
|
},
|
|
770
775
|
{
|
|
771
776
|
"path": "arcane/modules/ToolCallRouter.js",
|
|
@@ -774,8 +779,8 @@
|
|
|
774
779
|
},
|
|
775
780
|
{
|
|
776
781
|
"path": "arcane/modules/WaitForComponent.js",
|
|
777
|
-
"bytes":
|
|
778
|
-
"sha256": "
|
|
782
|
+
"bytes": 16828,
|
|
783
|
+
"sha256": "9fcb8edea119d3ed7a4a1c4d148b8270c978088c42b73f4e148dbdce6315d3a4"
|
|
779
784
|
},
|
|
780
785
|
{
|
|
781
786
|
"path": "arcane/modules/YouTubeMedia.js",
|