@wenathlan/saddle 1.8.13 → 1.8.15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +47 -9
- package/dist/binary/archive.d.ts +27 -0
- package/dist/binary/archive.d.ts.map +1 -0
- package/dist/binary/archive.js +46 -0
- package/dist/binary/archive.js.map +1 -0
- package/dist/binary/transform.d.ts +70 -0
- package/dist/binary/transform.d.ts.map +1 -0
- package/dist/binary/transform.js +105 -0
- package/dist/binary/transform.js.map +1 -0
- package/dist/delivery/manifest.d.ts +35 -0
- package/dist/delivery/manifest.d.ts.map +1 -0
- package/dist/delivery/manifest.js +68 -0
- package/dist/delivery/manifest.js.map +1 -0
- package/dist/index.d.ts +7 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +7 -0
- package/dist/index.js.map +1 -1
- package/dist/memory/planner.d.ts +66 -0
- package/dist/memory/planner.d.ts.map +1 -0
- package/dist/memory/planner.js +108 -0
- package/dist/memory/planner.js.map +1 -0
- package/dist/runners/chain.d.ts +125 -0
- package/dist/runners/chain.d.ts.map +1 -0
- package/dist/runners/chain.js +95 -0
- package/dist/runners/chain.js.map +1 -0
- package/dist/scrape/robots.js +1 -1
- package/dist/storage/index.d.ts +1 -0
- package/dist/storage/index.d.ts.map +1 -1
- package/dist/storage/index.js +1 -0
- package/dist/storage/index.js.map +1 -1
- package/dist/storage/memory.js +2 -2
- package/dist/storage/memory.js.map +1 -1
- package/dist/storage/pool.d.ts +95 -0
- package/dist/storage/pool.d.ts.map +1 -0
- package/dist/storage/pool.js +202 -0
- package/dist/storage/pool.js.map +1 -0
- package/dist/surfaces/requirements.d.ts +29 -0
- package/dist/surfaces/requirements.d.ts.map +1 -0
- package/dist/surfaces/requirements.js +50 -0
- package/dist/surfaces/requirements.js.map +1 -0
- package/docs/artifactavailability.md +22 -4
- package/docs/ecosystemplan.md +1 -1
- package/docs/enginearchitecture.md +28 -0
- package/docs/plans/00.index.md +2 -2
- package/docs/plans/06.dependencies.md +1 -1
- package/docs/plans/18.research.content.extraction.md +3 -3
- package/docs/plans/22.research.universal.runtime.md +10 -10
- package/docs/plans/28.action.plan.md +1 -1
- package/docs/plans/35.comparativo.concorrencia.md +10 -10
- package/docs/plans/40.npm.publish.md +6 -6
- package/docs/plans/41.o.que.falta.md +2 -2
- package/docs/plans/42.pesquisa.concorrencia.md +2 -2
- package/docs/plans/43.plan.universal.architecture.md +2 -2
- package/docs/plans/44.reference.md +1 -1
- package/docs/plans/45.robotarchitecture.md +3 -3
- package/docs/plans/46.scdnintegration.md +1 -1
- package/docs/plans/README.md +2 -2
- package/docs/plans/missing-facts.md +1 -1
- package/docs/registryresearch.md +3 -3
- package/docs/release17notes.md +1 -1
- package/docs/releaseassets.md +2 -2
- package/docs/releasenotes-1.8.12.md +17 -2
- package/docs/releasenotes-1.8.13.md +30 -2
- package/docs/releasenotes-1.8.14.md +67 -0
- package/docs/releasenotes-1.8.15.md +37 -0
- package/docs/talks9/README (2).md +2 -2
- package/docs/talks9/README.md +4 -4
- package/docs/talks9/Viabilidade do Saddle_ Uma An/303/241lise T/303/251cnica da Transforma/303/247/303/243o de Armazenamento Remoto em Mem/303/263ria Computacional.md" +4 -4
- package/docs/talks9/conversa.txt +4 -4
- package/docs/todo-1.8.15.md +483 -0
- package/docs/todo-1.8.16.md +651 -0
- package/docs/todo.md +708 -0
- package/extension/README.md +1 -1
- package/extension/manifest.json +1 -1
- package/package.json +9 -2
package/extension/README.md
CHANGED
|
@@ -20,7 +20,7 @@ The content bridge runs in Chrome's isolated world. It exposes bounded page meta
|
|
|
20
20
|
|
|
21
21
|
## deterministic release artifact
|
|
22
22
|
|
|
23
|
-
The Node-only build adapter creates an isolated unpacked artifact with the release version in its manifest. A caller can run `npm run extension:build -- --version 1.8.
|
|
23
|
+
The Node-only build adapter creates an isolated unpacked artifact with the release version in its manifest. A caller can run `npm run extension:build -- --version 1.8.14 --output build/extension` and package that directory with the archive tool available in the host environment. The release workflow derives the version from the published tag and attaches `saddle.extension.<version>.zip` without changing the source manifest.
|
|
24
24
|
|
|
25
25
|
## next slices
|
|
26
26
|
|
package/extension/manifest.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"manifest_version": 3,
|
|
3
3
|
"name": "Saddle browser bridge",
|
|
4
|
-
"version": "1.8.
|
|
4
|
+
"version": "1.8.15",
|
|
5
5
|
"description": "User initiated page snapshots through the Saddle browser contract.",
|
|
6
6
|
"minimum_chrome_version": "110",
|
|
7
7
|
"permissions": ["activeTab", "scripting", "storage"],
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wenathlan/saddle",
|
|
3
|
-
"version": "1.8.
|
|
3
|
+
"version": "1.8.15",
|
|
4
4
|
"description": "binary computing engine that turns distributed storage into a publishable working set",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"private": false,
|
|
@@ -55,9 +55,12 @@
|
|
|
55
55
|
"./memory": "./dist/memory/bridge.js",
|
|
56
56
|
"./memory-node": "./dist/memory/bridge.js",
|
|
57
57
|
"./memory-engine": "./dist/memory/engine.js",
|
|
58
|
+
"./memory-plan": "./dist/memory/planner.js",
|
|
58
59
|
"./storage": "./dist/storage/index.js",
|
|
60
|
+
"./storage-pool": "./dist/storage/pool.js",
|
|
59
61
|
"./storage-node": "./dist/storage/local.js",
|
|
60
62
|
"./runners": "./dist/runners/scheduler.js",
|
|
63
|
+
"./provider-chain": "./dist/runners/chain.js",
|
|
61
64
|
"./sessions": "./dist/domain/sessions.js",
|
|
62
65
|
"./modes": "./dist/modes/resolve.js",
|
|
63
66
|
"./mode": "./dist/modes/matrix.js",
|
|
@@ -75,7 +78,11 @@
|
|
|
75
78
|
"./hash": "./dist/core/hash.js",
|
|
76
79
|
"./release-assets": "./dist/release/assets.js",
|
|
77
80
|
"./release-verify": "./dist/release/verify.js",
|
|
78
|
-
"./
|
|
81
|
+
"./delivery": "./dist/delivery/manifest.js",
|
|
82
|
+
"./surface-requirements": "./dist/surfaces/requirements.js",
|
|
83
|
+
"./worker": "./dist/runtime/worker.js",
|
|
84
|
+
"./binary-archive": "./dist/binary/archive.js",
|
|
85
|
+
"./binary-transform": "./dist/binary/transform.js"
|
|
79
86
|
},
|
|
80
87
|
"files": [
|
|
81
88
|
"dist",
|