@fortemi/core 2026.8.0 → 2026.9.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/benchmarks/dataset-materialization/small-corpus.v1.json +12 -0
- package/dist/index.d.ts +1173 -130
- package/dist/index.js +2121 -405
- package/dist/index.js.map +1 -1
- package/package.json +10 -1
- package/schemas/dataset-execution-capabilities/fixtures/browser-local.json +14 -0
- package/schemas/dataset-execution-capabilities/fixtures/invalid-field-lineage-without-evidence.json +10 -0
- package/schemas/dataset-execution-capabilities/fixtures/invalid-incremental-without-checkpoint.json +10 -0
- package/schemas/dataset-execution-capabilities/fixtures/portable-shard.json +12 -0
- package/schemas/dataset-execution-capabilities/fixtures/remote-alpha.json +12 -0
- package/schemas/dataset-execution-capabilities/fixtures/static-cache.json +12 -0
- package/schemas/dataset-execution-capabilities/v1.schema.json +164 -0
- package/schemas/dataset-ingest/v1.schema.json +138 -0
- package/schemas/dataset-lineage/fixtures/golden-observed-field.json +20 -0
- package/schemas/dataset-lineage/v1.schema.json +126 -0
- package/schemas/dataset-materialization/fixtures/browser.json +11 -0
- package/schemas/dataset-materialization/fixtures/degraded.json +12 -0
- package/schemas/dataset-materialization/fixtures/deterministic.json +11 -0
- package/schemas/dataset-materialization/fixtures/external-adapter.json +11 -0
- package/schemas/dataset-materialization/fixtures/nondeterministic.json +11 -0
- package/schemas/dataset-materialization/fixtures/server.json +11 -0
- package/schemas/dataset-materialization/fixtures/supported.json +12 -0
- package/schemas/dataset-materialization/fixtures/unsupported.json +11 -0
- package/schemas/dataset-materialization/v1.schema.json +169 -0
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
{
|
|
2
|
+
"contract": "fortemi.dataset-materialization-profile/v1", "schemaVersion": "1.0.0", "evidenceType": "benchmark",
|
|
3
|
+
"benchmarkId": "fortemi-core-small-lexical-2026-09-03",
|
|
4
|
+
"corpus": { "id": "fortemi-materialization-fixture", "revision": "fixture-v1", "digest": "sha256:1010101010101010101010101010101010101010101010101010101010101010", "records": 100, "bytes": 65536 },
|
|
5
|
+
"hardware": { "runtime": "node-22-linux-x64", "cpu": "generic-ci-2-vcpu", "memoryBytes": 4294967296 },
|
|
6
|
+
"implementation": { "id": "fortemi-core-lexical", "version": "2026.8.0", "digest": "sha256:1111111111111111111111111111111111111111111111111111111111111111" },
|
|
7
|
+
"profile": { "id": "fortemi.lexical.default", "version": "1.0.0", "digest": "sha256:1212121212121212121212121212121212121212121212121212121212121212", "configurationDigest": "sha256:1313131313131313131313131313131313131313131313131313131313131313" },
|
|
8
|
+
"correctness": { "passed": true, "suite": "dataset-materialization-profiles.test.ts", "receiptDigest": "sha256:1414141414141414141414141414141414141414141414141414141414141414" },
|
|
9
|
+
"freshness": { "measuredAt": "2026-09-03T00:00:00Z", "sourceRevision": "fixture-v1" },
|
|
10
|
+
"measurements": [{ "name": "full-build", "value": 12.4, "unit": "ms" }, { "name": "throughput", "value": 8064.5, "unit": "records/s" }],
|
|
11
|
+
"claims": { "corpusScoped": true, "universalScaleLimit": false }
|
|
12
|
+
}
|