arcane-os 0.3.1 → 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 +14 -0
- package/README.md +86 -117
- package/bin/arcane-test.mjs +170 -46
- package/browser-runtime/ai/browser-speech-artifacts.mjs +855 -895
- package/browser-runtime/ai/browser-speech-providers.mjs +80 -204
- 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 -148
- package/browser-runtime/ai/speech-worker-runtime.mjs +642 -374
- 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 +1042 -427
- package/runtime/arcane/modules/AIProviderRuntime.js +618 -359
- 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 +27 -67
- 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 +109 -1558
- 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 -185
- package/docs/reference/ai/browser-speech-package-authority.json +0 -835
- package/docs/reference/ai/browser-speech.md +0 -1295
- 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 -719
- package/docs/reference/runtime-components.md +0 -1366
- package/docs/reference/runtime-entities.md +0 -303
- package/docs/reference/runtime-modules.md +0 -2965
- package/docs/reference/sdk-api.md +0 -6698
- package/docs/roadmap.md +0 -79
- package/docs/work-amplification.md +0 -129
- package/runtime/ARCANE_RUNTIME_RELEASE.json +0 -826
|
@@ -1,826 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"schemaVersion": 1,
|
|
3
|
-
"builder": "arcane-sdk-runtime-v1",
|
|
4
|
-
"sdkVersion": "0.3.1",
|
|
5
|
-
"source": {
|
|
6
|
-
"authority": "sdk-canonical",
|
|
7
|
-
"repository": "https://github.com/TheWizardNexus/arcane-os-sdk.git",
|
|
8
|
-
"path": "runtime/arcane",
|
|
9
|
-
"protocol": "arcane/1",
|
|
10
|
-
"legacyProjection": {
|
|
11
|
-
"repository": "https://github.com/TheWizardNexus/ARCANE-OS.git",
|
|
12
|
-
"commit": "c540014afe69f14cf5ae60493b7295f36dbcec64",
|
|
13
|
-
"bundleVersion": "0.8.12"
|
|
14
|
-
}
|
|
15
|
-
},
|
|
16
|
-
"fileCount": 161,
|
|
17
|
-
"totalBytes": 4161715,
|
|
18
|
-
"contentSha256": "9ed39694d9f286e0994404a82fb6002c3ba48be0d085a6b68d51c7facc17c56f",
|
|
19
|
-
"files": [
|
|
20
|
-
{
|
|
21
|
-
"path": "arcane/components/app-bar.html",
|
|
22
|
-
"bytes": 14675,
|
|
23
|
-
"sha256": "9a73a6ef525b4120813a40b9c1adc917907fec17f3cddb492e8ceddfde86df97"
|
|
24
|
-
},
|
|
25
|
-
{
|
|
26
|
-
"path": "arcane/components/assistant-panel.html",
|
|
27
|
-
"bytes": 24473,
|
|
28
|
-
"sha256": "1a43aec8e442bea2c481b2c9d3233d7a3820d0c7e3978c32b1c0852220b4e368"
|
|
29
|
-
},
|
|
30
|
-
{
|
|
31
|
-
"path": "arcane/components/calculator.html",
|
|
32
|
-
"bytes": 4101,
|
|
33
|
-
"sha256": "31b6421fb08b8db6be28da6d4d46a8a2d592725c8aff88e33c544ee7cd920f8f"
|
|
34
|
-
},
|
|
35
|
-
{
|
|
36
|
-
"path": "arcane/components/chart.html",
|
|
37
|
-
"bytes": 21464,
|
|
38
|
-
"sha256": "b16a76ccceed19f9e6411f86e77fe8e7ff8ac6caa81bb2d56d7457e02b5e93be"
|
|
39
|
-
},
|
|
40
|
-
{
|
|
41
|
-
"path": "arcane/components/chat.html",
|
|
42
|
-
"bytes": 78426,
|
|
43
|
-
"sha256": "2a0fb0ad5a3779cd178ed8a376ef0694f07617984cc5effee8b0f0992b65b470"
|
|
44
|
-
},
|
|
45
|
-
{
|
|
46
|
-
"path": "arcane/components/conversation-view.html",
|
|
47
|
-
"bytes": 7075,
|
|
48
|
-
"sha256": "77e0933a90b97c6194927c2d589b8915b454f8bdb312bd3684a10feac96f634f"
|
|
49
|
-
},
|
|
50
|
-
{
|
|
51
|
-
"path": "arcane/components/dashboard-config.html",
|
|
52
|
-
"bytes": 13320,
|
|
53
|
-
"sha256": "7a4d8129cacd5a10853345411c816ebc625d75ea567bff8e7ed61ce6e4e89de4"
|
|
54
|
-
},
|
|
55
|
-
{
|
|
56
|
-
"path": "arcane/components/data-maintenance.html",
|
|
57
|
-
"bytes": 5936,
|
|
58
|
-
"sha256": "8d5160cda541e8f736c03d0907952419a9ef4783294caf5f4b537ce932d5ef0f"
|
|
59
|
-
},
|
|
60
|
-
{
|
|
61
|
-
"path": "arcane/components/data-view.html",
|
|
62
|
-
"bytes": 4164,
|
|
63
|
-
"sha256": "9aff5945646deff231f8baaaf7958bbd74c612510e38e8c742bb4c7a25f05b53"
|
|
64
|
-
},
|
|
65
|
-
{
|
|
66
|
-
"path": "arcane/components/directory-picker.html",
|
|
67
|
-
"bytes": 10494,
|
|
68
|
-
"sha256": "42107f6ffe77695883db5b37f6cf245f73571bb6396d8e5cfcfad95cd5a33743"
|
|
69
|
-
},
|
|
70
|
-
{
|
|
71
|
-
"path": "arcane/components/document-inspector.html",
|
|
72
|
-
"bytes": 19395,
|
|
73
|
-
"sha256": "e0009e855af9157009315f1c6f41520c034d065cf8aff115951fb62be87191cf"
|
|
74
|
-
},
|
|
75
|
-
{
|
|
76
|
-
"path": "arcane/components/file-drop.html",
|
|
77
|
-
"bytes": 10903,
|
|
78
|
-
"sha256": "51a97d536be28045a6eeec3ca00e2c5d1079022f940597374374f13d9eeee8d7"
|
|
79
|
-
},
|
|
80
|
-
{
|
|
81
|
-
"path": "arcane/components/file-inspector.html",
|
|
82
|
-
"bytes": 12644,
|
|
83
|
-
"sha256": "fdf1992c41e0cf1e138da969fd44db92894146f5b4ae4866dc4f6616ad445c94"
|
|
84
|
-
},
|
|
85
|
-
{
|
|
86
|
-
"path": "arcane/components/file-manager.html",
|
|
87
|
-
"bytes": 59916,
|
|
88
|
-
"sha256": "314592c4d6028da3d2cf9f545697743acd179ff17f68476ebc09fee365121bb2"
|
|
89
|
-
},
|
|
90
|
-
{
|
|
91
|
-
"path": "arcane/components/header.html",
|
|
92
|
-
"bytes": 3453,
|
|
93
|
-
"sha256": "ca94f5cc161954089aae33de1306e9a063d973b0bd508eec43ccb76ccb4643a6"
|
|
94
|
-
},
|
|
95
|
-
{
|
|
96
|
-
"path": "arcane/components/integration-settings.html",
|
|
97
|
-
"bytes": 6442,
|
|
98
|
-
"sha256": "d4060f34c4b959c66430d9b8011f7e4eaef53c2af495047ff400a887e0ae714f"
|
|
99
|
-
},
|
|
100
|
-
{
|
|
101
|
-
"path": "arcane/components/local-ai-status.html",
|
|
102
|
-
"bytes": 15259,
|
|
103
|
-
"sha256": "de337b24a94bd70b64bae5fcce99d19d8561497fd73e38c544c3cfc30b7baf46"
|
|
104
|
-
},
|
|
105
|
-
{
|
|
106
|
-
"path": "arcane/components/markdown-document.html",
|
|
107
|
-
"bytes": 37537,
|
|
108
|
-
"sha256": "8f11a3d92a8008c7d09198183e848668b33b2d61c2640b5dfdc2fdfb45f335d4"
|
|
109
|
-
},
|
|
110
|
-
{
|
|
111
|
-
"path": "arcane/components/markdown-editor.html",
|
|
112
|
-
"bytes": 13234,
|
|
113
|
-
"sha256": "a141869dc24e7933dcc205fbb11f8e7717314eef8120335b2e68920725c6622a"
|
|
114
|
-
},
|
|
115
|
-
{
|
|
116
|
-
"path": "arcane/components/media-embed.html",
|
|
117
|
-
"bytes": 4736,
|
|
118
|
-
"sha256": "a458d50f776797b5da109a9a112abd599ee3577b208cac3009b48ff0dcc76dda"
|
|
119
|
-
},
|
|
120
|
-
{
|
|
121
|
-
"path": "arcane/components/modal.html",
|
|
122
|
-
"bytes": 13248,
|
|
123
|
-
"sha256": "c47aeed9162eddc574a49d4c151f70403cf471bc4a2daa38461a322326468097"
|
|
124
|
-
},
|
|
125
|
-
{
|
|
126
|
-
"path": "arcane/components/output-panel.html",
|
|
127
|
-
"bytes": 10194,
|
|
128
|
-
"sha256": "2988b243db94738a8fc426a7331ed15b7f5b436eceb3bfe008e30dbe9ae39327"
|
|
129
|
-
},
|
|
130
|
-
{
|
|
131
|
-
"path": "arcane/components/preferences-form.html",
|
|
132
|
-
"bytes": 6708,
|
|
133
|
-
"sha256": "9f4734a9a490f470c7e846ff063f68bfbed1a5e93eff14f268d0996037b06062"
|
|
134
|
-
},
|
|
135
|
-
{
|
|
136
|
-
"path": "arcane/components/record-timeline.html",
|
|
137
|
-
"bytes": 6936,
|
|
138
|
-
"sha256": "1a72e239692402614b838b186792ee8e04cce993258ce6b98a130aed87d63871"
|
|
139
|
-
},
|
|
140
|
-
{
|
|
141
|
-
"path": "arcane/components/relationship-board.html",
|
|
142
|
-
"bytes": 8837,
|
|
143
|
-
"sha256": "bc38e042084ca9b8900fa8e55fb5694b6eaf75763d19eee76de2b1e5a20b164e"
|
|
144
|
-
},
|
|
145
|
-
{
|
|
146
|
-
"path": "arcane/components/screen-capture.html",
|
|
147
|
-
"bytes": 6632,
|
|
148
|
-
"sha256": "c411d29cce009880ba0e9f5b8c8778401bf3d3008bb8e590280cfe98f0b42978"
|
|
149
|
-
},
|
|
150
|
-
{
|
|
151
|
-
"path": "arcane/components/source-code-viewer.html",
|
|
152
|
-
"bytes": 16816,
|
|
153
|
-
"sha256": "cf71f085ec9276b9cc392235e006830079b581977a5553a7e5d769f1c1230140"
|
|
154
|
-
},
|
|
155
|
-
{
|
|
156
|
-
"path": "arcane/components/source-explanation.html",
|
|
157
|
-
"bytes": 13655,
|
|
158
|
-
"sha256": "24dc4b15ad6ade9316b3dfc975813113d878e307cad99d3f48f8984409b09932"
|
|
159
|
-
},
|
|
160
|
-
{
|
|
161
|
-
"path": "arcane/components/speech.html",
|
|
162
|
-
"bytes": 52271,
|
|
163
|
-
"sha256": "1cb0645b6fb3d9f63c20c6338c9fbf910359ccfd5b97b087e1fc676a8cdb5fc6"
|
|
164
|
-
},
|
|
165
|
-
{
|
|
166
|
-
"path": "arcane/components/summary-strip.html",
|
|
167
|
-
"bytes": 6656,
|
|
168
|
-
"sha256": "7bebd2ed5c0452120cc40fe85cbe63495d514ecb4cb6a2ae51c72b9354a2801f"
|
|
169
|
-
},
|
|
170
|
-
{
|
|
171
|
-
"path": "arcane/components/table.html",
|
|
172
|
-
"bytes": 2569,
|
|
173
|
-
"sha256": "dfd9e2f6f16758a023c80a37aebfdbcad05c6caa7633215a8f6ac97bc39bd0f7"
|
|
174
|
-
},
|
|
175
|
-
{
|
|
176
|
-
"path": "arcane/components/task-progress.html",
|
|
177
|
-
"bytes": 11874,
|
|
178
|
-
"sha256": "305404fd232fb914419f71c08e99adab615198ea49090bc2d6acf3b49fc3a237"
|
|
179
|
-
},
|
|
180
|
-
{
|
|
181
|
-
"path": "arcane/components/terminal-workspace.html",
|
|
182
|
-
"bytes": 14569,
|
|
183
|
-
"sha256": "2f3735b7773a73384058b53ec4a9608c06e3904d17425ee15b4237453da6cbcc"
|
|
184
|
-
},
|
|
185
|
-
{
|
|
186
|
-
"path": "arcane/components/theme-editor.html",
|
|
187
|
-
"bytes": 5218,
|
|
188
|
-
"sha256": "c22e7f75dda702ab24cbcb4d93fc3d36c5e35e263783d698929c762764b7458d"
|
|
189
|
-
},
|
|
190
|
-
{
|
|
191
|
-
"path": "arcane/components/theme-switcher.html",
|
|
192
|
-
"bytes": 2923,
|
|
193
|
-
"sha256": "c35daa2595f8a10d3bbd300c078d01f2cb38f395c7499c8d1fd43f4e02354009"
|
|
194
|
-
},
|
|
195
|
-
{
|
|
196
|
-
"path": "arcane/components/unified-inbox.html",
|
|
197
|
-
"bytes": 5582,
|
|
198
|
-
"sha256": "2fa5ea8c48116b22a6e8d32206f21357245c885657d6f727c478c2e53169dcf5"
|
|
199
|
-
},
|
|
200
|
-
{
|
|
201
|
-
"path": "arcane/components/voice-transcription.html",
|
|
202
|
-
"bytes": 32428,
|
|
203
|
-
"sha256": "a41a2500c3d8c79681da58725b293202e71f564b82aa77b1f10ba45e58833814"
|
|
204
|
-
},
|
|
205
|
-
{
|
|
206
|
-
"path": "arcane/components/weather-widget.html",
|
|
207
|
-
"bytes": 5799,
|
|
208
|
-
"sha256": "a8aab7262dc67c976f23f1a124cf9c3e037ee1dc44750607509bb0fb967fe7a1"
|
|
209
|
-
},
|
|
210
|
-
{
|
|
211
|
-
"path": "arcane/components/web-navigator.html",
|
|
212
|
-
"bytes": 12507,
|
|
213
|
-
"sha256": "e1ab1278df2ab5676e93a3ef88fc02fa79e4e532ec0fadcef96669cc5d875696"
|
|
214
|
-
},
|
|
215
|
-
{
|
|
216
|
-
"path": "arcane/css/communications.css",
|
|
217
|
-
"bytes": 2541,
|
|
218
|
-
"sha256": "cb5560122b12b3e256f66306c8a15630bc3239f40be34c216b9cd44bd01ea238"
|
|
219
|
-
},
|
|
220
|
-
{
|
|
221
|
-
"path": "arcane/css/dashboard-config.css",
|
|
222
|
-
"bytes": 684,
|
|
223
|
-
"sha256": "b3b358222f6184db1990e89046c5a707f50197cb965745418a07b1ac468cdd92"
|
|
224
|
-
},
|
|
225
|
-
{
|
|
226
|
-
"path": "arcane/css/document-site.css",
|
|
227
|
-
"bytes": 20943,
|
|
228
|
-
"sha256": "cc842fa211642e59084c35d3f7f04ec7f6ea8aaaddb329a1ebe5c29d42157ff4"
|
|
229
|
-
},
|
|
230
|
-
{
|
|
231
|
-
"path": "arcane/css/layout.css",
|
|
232
|
-
"bytes": 11426,
|
|
233
|
-
"sha256": "a252580e0ecacf906f22e56afed7a7ffaa09a2339ddc2a59c8f529b550884dcd"
|
|
234
|
-
},
|
|
235
|
-
{
|
|
236
|
-
"path": "arcane/css/primitives.css",
|
|
237
|
-
"bytes": 9189,
|
|
238
|
-
"sha256": "c0d469654f0c3c8137a7ee00d2aa18a16ea01bd22b8a2de650655af1fdd4635d"
|
|
239
|
-
},
|
|
240
|
-
{
|
|
241
|
-
"path": "arcane/css/theme.css",
|
|
242
|
-
"bytes": 3747,
|
|
243
|
-
"sha256": "aa4b0eac6b2fa21829740a23ecdedcd88d2dd4fffb86de740bf2c9ed92aec84b"
|
|
244
|
-
},
|
|
245
|
-
{
|
|
246
|
-
"path": "arcane/css/utility-workspace.css",
|
|
247
|
-
"bytes": 1091,
|
|
248
|
-
"sha256": "1d883df6c736c1d7bb6faec507c487e33949d2e7f01e81da3449648daf9e54be"
|
|
249
|
-
},
|
|
250
|
-
{
|
|
251
|
-
"path": "arcane/entities/ApiModelRecord.js",
|
|
252
|
-
"bytes": 949,
|
|
253
|
-
"sha256": "07e9100a650091b8e27a0abb487b6b50ab6f01455d49c1875e9a36f440776d28"
|
|
254
|
-
},
|
|
255
|
-
{
|
|
256
|
-
"path": "arcane/entities/Calculation.js",
|
|
257
|
-
"bytes": 680,
|
|
258
|
-
"sha256": "597c248ccaf005c6fe9b58b9eb36781ca3b1b2071152b073b1ffd8762ee9e612"
|
|
259
|
-
},
|
|
260
|
-
{
|
|
261
|
-
"path": "arcane/entities/Chat.js",
|
|
262
|
-
"bytes": 25362,
|
|
263
|
-
"sha256": "8052338be05d2a8a9c8e740bf1fedc456e27dbe98e97b0676ee609a6aa817652"
|
|
264
|
-
},
|
|
265
|
-
{
|
|
266
|
-
"path": "arcane/entities/CommunicationMessage.js",
|
|
267
|
-
"bytes": 1869,
|
|
268
|
-
"sha256": "6097c3294cd56f52df297222cdc9d8279aad1a4786b34427bff2bc2804cd5041"
|
|
269
|
-
},
|
|
270
|
-
{
|
|
271
|
-
"path": "arcane/entities/CommunicationThread.js",
|
|
272
|
-
"bytes": 1430,
|
|
273
|
-
"sha256": "019eb0a0897a586f4916d83e0bb1736549505c9c0bf9467f5fab7de9019c28d3"
|
|
274
|
-
},
|
|
275
|
-
{
|
|
276
|
-
"path": "arcane/entities/Document.js",
|
|
277
|
-
"bytes": 219,
|
|
278
|
-
"sha256": "55786cb6905b3175931ebb931eda0f880cbd806e930175549225de7e1707511a"
|
|
279
|
-
},
|
|
280
|
-
{
|
|
281
|
-
"path": "arcane/entities/File.js",
|
|
282
|
-
"bytes": 3640,
|
|
283
|
-
"sha256": "b5541d176b193f8a4d3abf1ac54e3965b47661c3ddf67edfe20daaad4b46c766"
|
|
284
|
-
},
|
|
285
|
-
{
|
|
286
|
-
"path": "arcane/entities/Image.js",
|
|
287
|
-
"bytes": 2906,
|
|
288
|
-
"sha256": "be53fc8a9e08d0ab12ef499d3f0c5f14cf1e92a0fd904a0cc0fe4193d1d08309"
|
|
289
|
-
},
|
|
290
|
-
{
|
|
291
|
-
"path": "arcane/entities/IntentEnvelope.js",
|
|
292
|
-
"bytes": 29763,
|
|
293
|
-
"sha256": "208aeb34c7f8d3c870c79b247bfa500eba95b8b43d8fe3226695454a0f091164"
|
|
294
|
-
},
|
|
295
|
-
{
|
|
296
|
-
"path": "arcane/entities/Preference.js",
|
|
297
|
-
"bytes": 3576,
|
|
298
|
-
"sha256": "8e4cdce60dff5f6fc14af7c88229814aa01c213aad0f6ea3a6ed7129f5e061b0"
|
|
299
|
-
},
|
|
300
|
-
{
|
|
301
|
-
"path": "arcane/entities/TWiNPolicyDecision.js",
|
|
302
|
-
"bytes": 31864,
|
|
303
|
-
"sha256": "2339b82415169668231419abd4b172b514c88b0e232d39051e8c15d690427b37"
|
|
304
|
-
},
|
|
305
|
-
{
|
|
306
|
-
"path": "arcane/entities/TerminalSession.js",
|
|
307
|
-
"bytes": 1715,
|
|
308
|
-
"sha256": "242cbc1eb55e5adabf0de17591455a32d56f7a4d2469f0b41ff6846cf9c1c5e7"
|
|
309
|
-
},
|
|
310
|
-
{
|
|
311
|
-
"path": "arcane/entities/Theme.js",
|
|
312
|
-
"bytes": 4747,
|
|
313
|
-
"sha256": "7645860a22de9e3fe24105fb9741db1381e6dd8774348ab6b6bdbe4327238812"
|
|
314
|
-
},
|
|
315
|
-
{
|
|
316
|
-
"path": "arcane/entities/User.js",
|
|
317
|
-
"bytes": 25325,
|
|
318
|
-
"sha256": "4a6cfe6592177ca392168347d8ea024971cb3719ef6ccb093c11864e3ff8f59f"
|
|
319
|
-
},
|
|
320
|
-
{
|
|
321
|
-
"path": "arcane/entities/Weather.js",
|
|
322
|
-
"bytes": 3218,
|
|
323
|
-
"sha256": "696a2d5bc6ec9065acb0f07d764f2934eddc02779123cf35ccdb4594e6cf8491"
|
|
324
|
-
},
|
|
325
|
-
{
|
|
326
|
-
"path": "arcane/img/arcane-os-everywhere.png",
|
|
327
|
-
"bytes": 1947047,
|
|
328
|
-
"sha256": "ea4be2a8ae1dbbe2da9479206e729a1ed5f2add461156752f261c0e1631c54f1"
|
|
329
|
-
},
|
|
330
|
-
{
|
|
331
|
-
"path": "arcane/img/arrow-left.png",
|
|
332
|
-
"bytes": 730,
|
|
333
|
-
"sha256": "4103d75dcb0e748cdbb90ae6475b354fc8c57ca542aee37bec58b28c4bf3697c"
|
|
334
|
-
},
|
|
335
|
-
{
|
|
336
|
-
"path": "arcane/img/arrow-right.png",
|
|
337
|
-
"bytes": 726,
|
|
338
|
-
"sha256": "d21756b6387ae3258ec8fd66f55693e032eb79fa46dfac074a1d094c811852c5"
|
|
339
|
-
},
|
|
340
|
-
{
|
|
341
|
-
"path": "arcane/img/doc.svg",
|
|
342
|
-
"bytes": 285,
|
|
343
|
-
"sha256": "52cda13e4d3c8a5b6b017033c5f081997b0338109784f329fb22a977525a2aa1"
|
|
344
|
-
},
|
|
345
|
-
{
|
|
346
|
-
"path": "arcane/img/folder.svg",
|
|
347
|
-
"bytes": 373,
|
|
348
|
-
"sha256": "d1e47a24623b104e4f50dc4a5959dc45656ea05cdfddd902591918aa57368671"
|
|
349
|
-
},
|
|
350
|
-
{
|
|
351
|
-
"path": "arcane/img/image.svg",
|
|
352
|
-
"bytes": 297,
|
|
353
|
-
"sha256": "ff07d895603f754415bd237b8ed40d919f17462011026cd913c58b62b1ab1172"
|
|
354
|
-
},
|
|
355
|
-
{
|
|
356
|
-
"path": "arcane/img/refresh.png",
|
|
357
|
-
"bytes": 1155,
|
|
358
|
-
"sha256": "3bc1bfbc3c3ddb957ecf94f1427135d17111d4b979920d88bccbfdfcbe10f86e"
|
|
359
|
-
},
|
|
360
|
-
{
|
|
361
|
-
"path": "arcane/img/send.svg",
|
|
362
|
-
"bytes": 765,
|
|
363
|
-
"sha256": "39bd7d8a1356608ca3cc7a2e05b20bab1f2033d23cba2103aa8698dfd5506868"
|
|
364
|
-
},
|
|
365
|
-
{
|
|
366
|
-
"path": "arcane/img/trash.svg",
|
|
367
|
-
"bytes": 304,
|
|
368
|
-
"sha256": "de18cacb570abdec052c050758176a8c4e7c304a881d7eb5988743eb76167e45"
|
|
369
|
-
},
|
|
370
|
-
{
|
|
371
|
-
"path": "arcane/img/upload.svg",
|
|
372
|
-
"bytes": 329,
|
|
373
|
-
"sha256": "6e1549a55ce04d048126d80e319e13935a857c09fe27bae674a51cfeaa5742cc"
|
|
374
|
-
},
|
|
375
|
-
{
|
|
376
|
-
"path": "arcane/modules/AI.js",
|
|
377
|
-
"bytes": 201388,
|
|
378
|
-
"sha256": "2224391b2b22e93cb8be321382fcecd25cb5a2e8d09211dd6ce88b901df9c9ab"
|
|
379
|
-
},
|
|
380
|
-
{
|
|
381
|
-
"path": "arcane/modules/AIPreferenceRuntime.js",
|
|
382
|
-
"bytes": 936,
|
|
383
|
-
"sha256": "d5a2428067a86319f3e90dbe00d0f885156b3d7ea062379d3513760096ca6a32"
|
|
384
|
-
},
|
|
385
|
-
{
|
|
386
|
-
"path": "arcane/modules/AIPreferenceTuple.js",
|
|
387
|
-
"bytes": 2594,
|
|
388
|
-
"sha256": "7fd028fd9e7f3eb309a6a2b7612a5fc67d4c7289adc4168d681224579220ac09"
|
|
389
|
-
},
|
|
390
|
-
{
|
|
391
|
-
"path": "arcane/modules/AIProviderRuntime.js",
|
|
392
|
-
"bytes": 123957,
|
|
393
|
-
"sha256": "65234004cc7ed64060475d5f6076712f926ae3786f8b57cc5321d6e0d5cd97c8"
|
|
394
|
-
},
|
|
395
|
-
{
|
|
396
|
-
"path": "arcane/modules/AIResponseLength.js",
|
|
397
|
-
"bytes": 1941,
|
|
398
|
-
"sha256": "fc295940a7cdeb959eba2fe465de88abee8832330551b6776ee0d0f743c0df6f"
|
|
399
|
-
},
|
|
400
|
-
{
|
|
401
|
-
"path": "arcane/modules/AIResponseURLPolicy.js",
|
|
402
|
-
"bytes": 17587,
|
|
403
|
-
"sha256": "905af15d5d4912a68fa96ea44b0f6ac2eef90c69c6486ce507e00a7850acd626"
|
|
404
|
-
},
|
|
405
|
-
{
|
|
406
|
-
"path": "arcane/modules/AIRuntimeState.js",
|
|
407
|
-
"bytes": 27346,
|
|
408
|
-
"sha256": "6f16f56724399db365b7078341c72ced0e926ce16177557b8b763fd02a9318ff"
|
|
409
|
-
},
|
|
410
|
-
{
|
|
411
|
-
"path": "arcane/modules/AnsiText.js",
|
|
412
|
-
"bytes": 2373,
|
|
413
|
-
"sha256": "6df757951352eea5261feb8723678caea6481a013abc91a7811e748361819070"
|
|
414
|
-
},
|
|
415
|
-
{
|
|
416
|
-
"path": "arcane/modules/ApiModelDatabase.js",
|
|
417
|
-
"bytes": 17085,
|
|
418
|
-
"sha256": "7544af3e7503e23d71954a4a36c95372c83a00df594d897bfba22539be85a28c"
|
|
419
|
-
},
|
|
420
|
-
{
|
|
421
|
-
"path": "arcane/modules/AppDataScope.js",
|
|
422
|
-
"bytes": 7642,
|
|
423
|
-
"sha256": "4ac7be2fc8c7e0e3dfae4d748ed6dfd7a9169464b3ffb91e12c65d6d69574a06"
|
|
424
|
-
},
|
|
425
|
-
{
|
|
426
|
-
"path": "arcane/modules/AppearancePreferences.js",
|
|
427
|
-
"bytes": 1945,
|
|
428
|
-
"sha256": "0badfd8ee000658a05d4c18d2f676cf2a7b420aff1a1ce6ee91cf38a0a3201a3"
|
|
429
|
-
},
|
|
430
|
-
{
|
|
431
|
-
"path": "arcane/modules/ArcaneCommunicationBridge.js",
|
|
432
|
-
"bytes": 2391,
|
|
433
|
-
"sha256": "19ae03e874bd36193fe3f232118e11ddef6b7076264117c927d91179c29ede98"
|
|
434
|
-
},
|
|
435
|
-
{
|
|
436
|
-
"path": "arcane/modules/ArcaneNavigationPolicy.js",
|
|
437
|
-
"bytes": 5708,
|
|
438
|
-
"sha256": "11d2be4420644bc6bd701d3637376ab5de5a0c410a840e60d877d1fc995acb3b"
|
|
439
|
-
},
|
|
440
|
-
{
|
|
441
|
-
"path": "arcane/modules/ArcaneNetworkPolicy.js",
|
|
442
|
-
"bytes": 18298,
|
|
443
|
-
"sha256": "3cd27dddf26d70b745af6a4b6d1406b6d2b4387b6c396e3976d837c19ee44085"
|
|
444
|
-
},
|
|
445
|
-
{
|
|
446
|
-
"path": "arcane/modules/AsyncBoundary.js",
|
|
447
|
-
"bytes": 5384,
|
|
448
|
-
"sha256": "80688df370a8e1b3c4f0540fd5a594dbc66b15021c3b6556ce5b91a921d03358"
|
|
449
|
-
},
|
|
450
|
-
{
|
|
451
|
-
"path": "arcane/modules/BrowserTestSuite.js",
|
|
452
|
-
"bytes": 20369,
|
|
453
|
-
"sha256": "439f43268288b714dc2032468a5e3563f7d1175945afcea23a02c02ede54e365"
|
|
454
|
-
},
|
|
455
|
-
{
|
|
456
|
-
"path": "arcane/modules/CalculatorEngine.js",
|
|
457
|
-
"bytes": 5875,
|
|
458
|
-
"sha256": "90f98f53c11e551f9b4623f0887b3fe51e3cc221c8f93ffbca8a9b619949c446"
|
|
459
|
-
},
|
|
460
|
-
{
|
|
461
|
-
"path": "arcane/modules/CaseEvidenceIndexer.js",
|
|
462
|
-
"bytes": 7669,
|
|
463
|
-
"sha256": "649afbd5690d2e6e3080213607fb737a759e24168ff07804a26bc9792d528cd6"
|
|
464
|
-
},
|
|
465
|
-
{
|
|
466
|
-
"path": "arcane/modules/ChartLibrary.js",
|
|
467
|
-
"bytes": 912,
|
|
468
|
-
"sha256": "b64019006a8045362759268a311fe165cdcad5276ea8b2e67fa8c059b5d5c783"
|
|
469
|
-
},
|
|
470
|
-
{
|
|
471
|
-
"path": "arcane/modules/ChatRecords.js",
|
|
472
|
-
"bytes": 220,
|
|
473
|
-
"sha256": "48ee413d23a4dd44634e6bc2bd75dcb5f0ca05a848aaf4fd3f27b1ed611ff2ff"
|
|
474
|
-
},
|
|
475
|
-
{
|
|
476
|
-
"path": "arcane/modules/CommunicationAppController.js",
|
|
477
|
-
"bytes": 18705,
|
|
478
|
-
"sha256": "8b9d77c9589d28b2da55a93e2ee7e4d7dd37285992bc3b93888825d84d8cf540"
|
|
479
|
-
},
|
|
480
|
-
{
|
|
481
|
-
"path": "arcane/modules/CommunicationHub.js",
|
|
482
|
-
"bytes": 20437,
|
|
483
|
-
"sha256": "f0bc2de132bd2471d189e81ae56c548cbe5bd288150514f7e33e5c940473b66b"
|
|
484
|
-
},
|
|
485
|
-
{
|
|
486
|
-
"path": "arcane/modules/CommunicationPreferences.js",
|
|
487
|
-
"bytes": 1186,
|
|
488
|
-
"sha256": "2c095d5d71e8ccb096b896a687de46269c0021f3dc089417cc5acd4cdd0fbcbe"
|
|
489
|
-
},
|
|
490
|
-
{
|
|
491
|
-
"path": "arcane/modules/CommunicationProviderRegistry.js",
|
|
492
|
-
"bytes": 1293,
|
|
493
|
-
"sha256": "9782dc1385744603149f4e97b879899b91a7bba3b748c7a4771df17400615d43"
|
|
494
|
-
},
|
|
495
|
-
{
|
|
496
|
-
"path": "arcane/modules/ComponentContracts.js",
|
|
497
|
-
"bytes": 35706,
|
|
498
|
-
"sha256": "21bb0578d7f81c937fde04120c0040961d914a0dd34e381df829841dc98c3ef2"
|
|
499
|
-
},
|
|
500
|
-
{
|
|
501
|
-
"path": "arcane/modules/ConfiguredAIChatSession.js",
|
|
502
|
-
"bytes": 24501,
|
|
503
|
-
"sha256": "f95c3421bf07397e987f77fc3d02166cf780059dd3d6de90ceaded990752f51b"
|
|
504
|
-
},
|
|
505
|
-
{
|
|
506
|
-
"path": "arcane/modules/ConversationActionItems.js",
|
|
507
|
-
"bytes": 16617,
|
|
508
|
-
"sha256": "2929adf4d8580a27d548e6a29e11484aaa6908e6c33b4edd60a7fca86127c6b9"
|
|
509
|
-
},
|
|
510
|
-
{
|
|
511
|
-
"path": "arcane/modules/ConversationClosingReport.js",
|
|
512
|
-
"bytes": 10280,
|
|
513
|
-
"sha256": "11e76f1fcf46c0166420188a8dc8140edb9540c30190324e1fa4c6936036ebb6"
|
|
514
|
-
},
|
|
515
|
-
{
|
|
516
|
-
"path": "arcane/modules/ConversationTimebox.js",
|
|
517
|
-
"bytes": 24406,
|
|
518
|
-
"sha256": "ae73be462a5264114c38cb3b325709cbfc25f1e6da39d651a8f8a8c26fb4e5fe"
|
|
519
|
-
},
|
|
520
|
-
{
|
|
521
|
-
"path": "arcane/modules/CoreLocalModelCatalog.js",
|
|
522
|
-
"bytes": 8650,
|
|
523
|
-
"sha256": "c9aaf806f7f1defaeb145c20602a30018bde0e15209ec70e0eb7c82184e9a7c4"
|
|
524
|
-
},
|
|
525
|
-
{
|
|
526
|
-
"path": "arcane/modules/DBLS.js",
|
|
527
|
-
"bytes": 5403,
|
|
528
|
-
"sha256": "5ff348c1be9d83e31e58a7a0fd480a08f9b778d9edfcf792ca217e587ebb3f67"
|
|
529
|
-
},
|
|
530
|
-
{
|
|
531
|
-
"path": "arcane/modules/DBOPFS.js",
|
|
532
|
-
"bytes": 30894,
|
|
533
|
-
"sha256": "3bf9033dbe5064801e92bf15764e88b22cd14e706b2cf44ed770d54f42e762c2"
|
|
534
|
-
},
|
|
535
|
-
{
|
|
536
|
-
"path": "arcane/modules/DBOPFSDocumentLibrary.js",
|
|
537
|
-
"bytes": 50695,
|
|
538
|
-
"sha256": "2831470ce54c3393595bf068d60c2e774804cbd51dba7491ad734bbfbea7f32f"
|
|
539
|
-
},
|
|
540
|
-
{
|
|
541
|
-
"path": "arcane/modules/DBOPFSWorker.js",
|
|
542
|
-
"bytes": 3928,
|
|
543
|
-
"sha256": "7b3f1b5176431a104a0faa80063577362cc57eef0800212abafc209f7912d14e"
|
|
544
|
-
},
|
|
545
|
-
{
|
|
546
|
-
"path": "arcane/modules/DataMaintenance.js",
|
|
547
|
-
"bytes": 2623,
|
|
548
|
-
"sha256": "462dc4e83d5e5572ff5a3994981a50c89a1c7ebe02f47e3384aef5c2d31f29e8"
|
|
549
|
-
},
|
|
550
|
-
{
|
|
551
|
-
"path": "arcane/modules/DevelopmentWorkspace.js",
|
|
552
|
-
"bytes": 2321,
|
|
553
|
-
"sha256": "892b4128433d075bc7d4829adc9f52b3f1f7020e9eb7c5b10848c3fa03162d5a"
|
|
554
|
-
},
|
|
555
|
-
{
|
|
556
|
-
"path": "arcane/modules/DirectoryPicker.js",
|
|
557
|
-
"bytes": 3799,
|
|
558
|
-
"sha256": "da1eaab03aa5d5ee64d236b5d6bd11a792c811110a1d57fa43d43e26ff97d169"
|
|
559
|
-
},
|
|
560
|
-
{
|
|
561
|
-
"path": "arcane/modules/DocumentLexicalSearch.js",
|
|
562
|
-
"bytes": 12977,
|
|
563
|
-
"sha256": "f83a8428e5080cd61bbecac39104a768457d4c7b4825acaf9add9286c6b84b09"
|
|
564
|
-
},
|
|
565
|
-
{
|
|
566
|
-
"path": "arcane/modules/DocumentNavigation.js",
|
|
567
|
-
"bytes": 7194,
|
|
568
|
-
"sha256": "289519a1d3b956f54280e9462ce3f5b0d9776feae2c94db371d9a996df9f0435"
|
|
569
|
-
},
|
|
570
|
-
{
|
|
571
|
-
"path": "arcane/modules/Errors.js",
|
|
572
|
-
"bytes": 34987,
|
|
573
|
-
"sha256": "fe4dc569dc997c8d0635e8d389c7bafc3fc3c217d30d00b1e940c78fd7569032"
|
|
574
|
-
},
|
|
575
|
-
{
|
|
576
|
-
"path": "arcane/modules/GifEncoder.js",
|
|
577
|
-
"bytes": 2537,
|
|
578
|
-
"sha256": "3d32014695e4c7a0327f79ebf05512510605ac5ea63968f8f6d2e83c0c81338a"
|
|
579
|
-
},
|
|
580
|
-
{
|
|
581
|
-
"path": "arcane/modules/HTMLImport.js",
|
|
582
|
-
"bytes": 9712,
|
|
583
|
-
"sha256": "71da0c0601f3f9a2c5f6fdebba4c00eb6c4c2b03e3e1b6a1ee9f4733f115db54"
|
|
584
|
-
},
|
|
585
|
-
{
|
|
586
|
-
"path": "arcane/modules/InMemoryCommunicationProvider.js",
|
|
587
|
-
"bytes": 1662,
|
|
588
|
-
"sha256": "68604439786f663e2b7ae38ac5e7b0a7bbeb5d02e8cd840501640528c016ca43"
|
|
589
|
-
},
|
|
590
|
-
{
|
|
591
|
-
"path": "arcane/modules/IsolatedModelQuestionRunner.js",
|
|
592
|
-
"bytes": 9299,
|
|
593
|
-
"sha256": "78fd5f2fe6e2bc6d051fa4fa01af490c09ddd3e148f6e8f63adf4c8033eed78e"
|
|
594
|
-
},
|
|
595
|
-
{
|
|
596
|
-
"path": "arcane/modules/LocalAIReadiness.js",
|
|
597
|
-
"bytes": 24991,
|
|
598
|
-
"sha256": "a3b9218407afcee2b58bc54de76df4ffcae3fe3bdc1383ea3c81e63c809cddca"
|
|
599
|
-
},
|
|
600
|
-
{
|
|
601
|
-
"path": "arcane/modules/LocalAIReadinessController.js",
|
|
602
|
-
"bytes": 10154,
|
|
603
|
-
"sha256": "ce9b6861e2913c9ae644c1d10a82541f32d6ec9a1c5bc7a5f61ad4272cc6c49f"
|
|
604
|
-
},
|
|
605
|
-
{
|
|
606
|
-
"path": "arcane/modules/MD.js",
|
|
607
|
-
"bytes": 2886,
|
|
608
|
-
"sha256": "54c3ef2c4be763a9fa68244cc5fbbd324d9a4e34bda77d79d84e1ed81ec728eb"
|
|
609
|
-
},
|
|
610
|
-
{
|
|
611
|
-
"path": "arcane/modules/Mail.js",
|
|
612
|
-
"bytes": 34279,
|
|
613
|
-
"sha256": "f1bb1f4555e9923d009c8d01429359dfccb8ca6a391bdb0e214b21fb9ba7df29"
|
|
614
|
-
},
|
|
615
|
-
{
|
|
616
|
-
"path": "arcane/modules/MailOutbox.mjs",
|
|
617
|
-
"bytes": 49808,
|
|
618
|
-
"sha256": "2f1d6419d158deb2a9cd33061323f78e886b0c40478372d15267d74f265c1833"
|
|
619
|
-
},
|
|
620
|
-
{
|
|
621
|
-
"path": "arcane/modules/MailTransport.mjs",
|
|
622
|
-
"bytes": 12469,
|
|
623
|
-
"sha256": "13e8c9285fe686295c56195891d4183c60459cc6a795ae467481ef70ae40f639"
|
|
624
|
-
},
|
|
625
|
-
{
|
|
626
|
-
"path": "arcane/modules/Marked.min.js",
|
|
627
|
-
"bytes": 41947,
|
|
628
|
-
"sha256": "51a9c85cb05410e0dc26544700fc56a59e544be586413db7f4e2f01f5c9e6387"
|
|
629
|
-
},
|
|
630
|
-
{
|
|
631
|
-
"path": "arcane/modules/MemoryRecords.js",
|
|
632
|
-
"bytes": 839,
|
|
633
|
-
"sha256": "8e7b398a1884c3d7c6695d120384953e3072f3eeb2d64d278a5436acc25fa079"
|
|
634
|
-
},
|
|
635
|
-
{
|
|
636
|
-
"path": "arcane/modules/MessageAdvisory.js",
|
|
637
|
-
"bytes": 1819,
|
|
638
|
-
"sha256": "ed5bf8125247a2adeea728d44de50778c3aac330a4b59c837a3ca003c04106be"
|
|
639
|
-
},
|
|
640
|
-
{
|
|
641
|
-
"path": "arcane/modules/ModelDefinition.js",
|
|
642
|
-
"bytes": 5711,
|
|
643
|
-
"sha256": "1e768f70504fac80825a737b89bf272671f1eb43f95745f38346e8384aceef6c"
|
|
644
|
-
},
|
|
645
|
-
{
|
|
646
|
-
"path": "arcane/modules/Ollama.js",
|
|
647
|
-
"bytes": 3870,
|
|
648
|
-
"sha256": "53818a876ef1406a074e7d4bc1aaac667ed1a8380432e24a74166db3f13444b4"
|
|
649
|
-
},
|
|
650
|
-
{
|
|
651
|
-
"path": "arcane/modules/OllamaModelIdentifier.js",
|
|
652
|
-
"bytes": 676,
|
|
653
|
-
"sha256": "bbf567b6c2624368edd27e5ff0924876ba71b260f668e2b0d9ec919560a6dd21"
|
|
654
|
-
},
|
|
655
|
-
{
|
|
656
|
-
"path": "arcane/modules/OllamaSettings.js",
|
|
657
|
-
"bytes": 2786,
|
|
658
|
-
"sha256": "4f446edbaa3d065d0a759ff1771626195e8fadd9c2a9698d705f0b75218cd4ff"
|
|
659
|
-
},
|
|
660
|
-
{
|
|
661
|
-
"path": "arcane/modules/OpenMeteoWeatherProvider.js",
|
|
662
|
-
"bytes": 24014,
|
|
663
|
-
"sha256": "dc61676aa22485021b037fcb6b935e8d0dacd15fbc36531c2ff03a9f3508b995"
|
|
664
|
-
},
|
|
665
|
-
{
|
|
666
|
-
"path": "arcane/modules/PersistentAIChatSession.js",
|
|
667
|
-
"bytes": 10890,
|
|
668
|
-
"sha256": "4bb4980e09f3cfcf20ca7c5130e1e133042554b8e1fae4fd613e0e2a9acdbee0"
|
|
669
|
-
},
|
|
670
|
-
{
|
|
671
|
-
"path": "arcane/modules/PreferenceStore.js",
|
|
672
|
-
"bytes": 15233,
|
|
673
|
-
"sha256": "80a44099a592c8914c0c2fe0bf124896e7d016ef307b23dd55062f4bc2343a6a"
|
|
674
|
-
},
|
|
675
|
-
{
|
|
676
|
-
"path": "arcane/modules/QRCode.min.js",
|
|
677
|
-
"bytes": 19927,
|
|
678
|
-
"sha256": "c541ef06327885a8415bca8df6071e14189b4855336def4f36db54bde8484f36"
|
|
679
|
-
},
|
|
680
|
-
{
|
|
681
|
-
"path": "arcane/modules/Questionnaire.js",
|
|
682
|
-
"bytes": 2189,
|
|
683
|
-
"sha256": "f1afa089073f9c7c49dfe59cef615a5bbeceb0687ebcead228d2114bf3908af8"
|
|
684
|
-
},
|
|
685
|
-
{
|
|
686
|
-
"path": "arcane/modules/RecordLinkIndex.js",
|
|
687
|
-
"bytes": 1142,
|
|
688
|
-
"sha256": "f9d9b0e734bc96bd3130b80023f9f1a446daabdd10178b8a83637e36d8af1090"
|
|
689
|
-
},
|
|
690
|
-
{
|
|
691
|
-
"path": "arcane/modules/RecordPassageIndex.js",
|
|
692
|
-
"bytes": 8504,
|
|
693
|
-
"sha256": "d9c501a82782db08257cdc4dabe77249176424e4b7ca3b9244d29314662b2044"
|
|
694
|
-
},
|
|
695
|
-
{
|
|
696
|
-
"path": "arcane/modules/RecordReviewStore.js",
|
|
697
|
-
"bytes": 13642,
|
|
698
|
-
"sha256": "f5ba5296add8d30a5ca23400ca70c73d593a0b7ba422f1166e445178966dde37"
|
|
699
|
-
},
|
|
700
|
-
{
|
|
701
|
-
"path": "arcane/modules/RevocableProjectionLedger.js",
|
|
702
|
-
"bytes": 50559,
|
|
703
|
-
"sha256": "3bf0dbd1cb589aed703314676c67c045b61340191dc8d2f3cab3238894831859"
|
|
704
|
-
},
|
|
705
|
-
{
|
|
706
|
-
"path": "arcane/modules/RiskSignalAnalyzer.js",
|
|
707
|
-
"bytes": 1300,
|
|
708
|
-
"sha256": "ce3e3f17da0ee34c3c7de100fcaa25b1bb9535016b3f4278b18e6607dd1f52c7"
|
|
709
|
-
},
|
|
710
|
-
{
|
|
711
|
-
"path": "arcane/modules/ScamRiskPolicy.js",
|
|
712
|
-
"bytes": 4742,
|
|
713
|
-
"sha256": "de1a8ee3e43b8ea59f06e2fc7c9dcb5b3933f0862440d6db006916208adc1343"
|
|
714
|
-
},
|
|
715
|
-
{
|
|
716
|
-
"path": "arcane/modules/ScopedOPFSCache.js",
|
|
717
|
-
"bytes": 5923,
|
|
718
|
-
"sha256": "71247d8b98db29ebe521fc874648601143bd8857173e18436718987bfa751d02"
|
|
719
|
-
},
|
|
720
|
-
{
|
|
721
|
-
"path": "arcane/modules/ScreenCapture.js",
|
|
722
|
-
"bytes": 54484,
|
|
723
|
-
"sha256": "43c9f469df7d7fb810b2976bdc4364343a311b6e9565bf38f78c54c6cf692233"
|
|
724
|
-
},
|
|
725
|
-
{
|
|
726
|
-
"path": "arcane/modules/SpeechPlayback.js",
|
|
727
|
-
"bytes": 35512,
|
|
728
|
-
"sha256": "c8936533c190996394a215e40f46074bde136c10c0bdca303848e1f789f30e53"
|
|
729
|
-
},
|
|
730
|
-
{
|
|
731
|
-
"path": "arcane/modules/StaticDocumentCatalog.js",
|
|
732
|
-
"bytes": 47189,
|
|
733
|
-
"sha256": "002ab228c2ec80006c6365eb5bbdde33e5951c7424ca15aa16b4d9663bcc77f8"
|
|
734
|
-
},
|
|
735
|
-
{
|
|
736
|
-
"path": "arcane/modules/SystemAppearance.js",
|
|
737
|
-
"bytes": 772,
|
|
738
|
-
"sha256": "35a96ee2dd24e80ec825b8eaf8f01c239bea7fbc1c03605d953fee1ee4ce7d1e"
|
|
739
|
-
},
|
|
740
|
-
{
|
|
741
|
-
"path": "arcane/modules/SystemPlatformPresentation.js",
|
|
742
|
-
"bytes": 2048,
|
|
743
|
-
"sha256": "ed981ce7b503b26173b479a540c092f70409715cc6d0bf8e9afd7ab7c674b38f"
|
|
744
|
-
},
|
|
745
|
-
{
|
|
746
|
-
"path": "arcane/modules/SystemToolRegistry.js",
|
|
747
|
-
"bytes": 1554,
|
|
748
|
-
"sha256": "50cc61054521bb1fb8328067f70e8f0a05b827d8da6ce07e24bd77d25528f60b"
|
|
749
|
-
},
|
|
750
|
-
{
|
|
751
|
-
"path": "arcane/modules/TerminalClient.js",
|
|
752
|
-
"bytes": 11801,
|
|
753
|
-
"sha256": "8fedad71db45a2a6d2cf3989127857d493224a0c204029e0306010348fb3b5c0"
|
|
754
|
-
},
|
|
755
|
-
{
|
|
756
|
-
"path": "arcane/modules/TerminalCommandRegistry.js",
|
|
757
|
-
"bytes": 2414,
|
|
758
|
-
"sha256": "628bdda1d4934e2825cdd84e698ba85038db1ab4ff700ff722f20654e64ad307"
|
|
759
|
-
},
|
|
760
|
-
{
|
|
761
|
-
"path": "arcane/modules/ThemeBootstrap.js",
|
|
762
|
-
"bytes": 3397,
|
|
763
|
-
"sha256": "d11578a3753821a9bf361e4303f392d36c298c1ec1df4e03c299410def026105"
|
|
764
|
-
},
|
|
765
|
-
{
|
|
766
|
-
"path": "arcane/modules/ThemeManager.js",
|
|
767
|
-
"bytes": 6375,
|
|
768
|
-
"sha256": "c23b6e62c56a0d07cd9caf3435bfa902a3d7131f075223cd464a415bccab2136"
|
|
769
|
-
},
|
|
770
|
-
{
|
|
771
|
-
"path": "arcane/modules/TimeGuard.js",
|
|
772
|
-
"bytes": 7104,
|
|
773
|
-
"sha256": "d2e3ba4979d94354d0b1f345f6f1c66f49044e3e8543db430f8db8624141118b"
|
|
774
|
-
},
|
|
775
|
-
{
|
|
776
|
-
"path": "arcane/modules/ToolCallRouter.js",
|
|
777
|
-
"bytes": 1958,
|
|
778
|
-
"sha256": "67447b0ed2429b54cb4e5d3e8743cf8ffadcb7d118b90942722ca34b689a8bf4"
|
|
779
|
-
},
|
|
780
|
-
{
|
|
781
|
-
"path": "arcane/modules/WaitForComponent.js",
|
|
782
|
-
"bytes": 16828,
|
|
783
|
-
"sha256": "9fcb8edea119d3ed7a4a1c4d148b8270c978088c42b73f4e148dbdce6315d3a4"
|
|
784
|
-
},
|
|
785
|
-
{
|
|
786
|
-
"path": "arcane/modules/YouTubeMedia.js",
|
|
787
|
-
"bytes": 1809,
|
|
788
|
-
"sha256": "0bf3aab64fe422a904cfb9df9ef7c14be73d53e18e0ee557c0c99e286631c228"
|
|
789
|
-
},
|
|
790
|
-
{
|
|
791
|
-
"path": "arcane/modules/uPlot.LICENSE.txt",
|
|
792
|
-
"bytes": 1079,
|
|
793
|
-
"sha256": "3421f0033bae76860e165efab33d4bbbcc2d8fc1a4a708ef4f6742eef434ab47"
|
|
794
|
-
},
|
|
795
|
-
{
|
|
796
|
-
"path": "arcane/modules/uPlot.iife.min.js",
|
|
797
|
-
"bytes": 51081,
|
|
798
|
-
"sha256": "19c8d4c6ad88929a79f4ae49d6f7161566dfd0ba3d15cc495e974f787eb78f1f"
|
|
799
|
-
},
|
|
800
|
-
{
|
|
801
|
-
"path": "arcane/modules/uPlot.min.css",
|
|
802
|
-
"bytes": 1857,
|
|
803
|
-
"sha256": "df630c6a8d6f8eeaff264b50f73ce5b114f646ffd9a0bb74f049b0a00135fa04"
|
|
804
|
-
},
|
|
805
|
-
{
|
|
806
|
-
"path": "arcane/security/arcane-network-policy.json",
|
|
807
|
-
"bytes": 87,
|
|
808
|
-
"sha256": "0f948ff25fb8deeff1828e230f746d34765d7529b21e04b0fb417e00e303a449"
|
|
809
|
-
},
|
|
810
|
-
{
|
|
811
|
-
"path": "strong-type/index.js",
|
|
812
|
-
"bytes": 7966,
|
|
813
|
-
"sha256": "a7b76761aa83553f172846587cbc96809b648640e90d019ae94c2795418a02f4"
|
|
814
|
-
},
|
|
815
|
-
{
|
|
816
|
-
"path": "strong-type/licence",
|
|
817
|
-
"bytes": 1097,
|
|
818
|
-
"sha256": "82b891ff5bdc521884c20023b4f468dce605aff5b0d6dc642cd2ce2849b55125"
|
|
819
|
-
},
|
|
820
|
-
{
|
|
821
|
-
"path": "strong-type/package.json",
|
|
822
|
-
"bytes": 1607,
|
|
823
|
-
"sha256": "9ff67f61a7df3129162ba340f89018828dbbf82705caf022fdff974e6f6792f8"
|
|
824
|
-
}
|
|
825
|
-
]
|
|
826
|
-
}
|