@fulmenhq/tsfulmen 0.2.0 → 0.2.3
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 +70 -0
- package/README.md +61 -7
- package/config/crucible-ts/agentic/roles/README.md +3 -3
- package/config/crucible-ts/library/fulencode/fixtures/README.md +18 -0
- package/config/crucible-ts/library/fulencode/fixtures/bom/bom.yaml +14 -0
- package/config/crucible-ts/library/fulencode/fixtures/detection/detection.yaml +12 -0
- package/config/crucible-ts/library/fulencode/fixtures/invalid-encodings/base64.yaml +10 -0
- package/config/crucible-ts/library/fulencode/fixtures/normalization/text-safe.yaml +10 -0
- package/config/crucible-ts/library/fulencode/fixtures/telemetry/telemetry-test-cases.yaml +24 -0
- package/config/crucible-ts/library/fulencode/fixtures/valid-encodings/base64.yaml +11 -0
- package/config/crucible-ts/taxonomy/library/platform-modules/v1.0.0/modules.yaml +2 -2
- package/config/crucible-ts/taxonomy/metrics.yaml +79 -1
- package/dist/appidentity/index.d.ts +31 -109
- package/dist/appidentity/index.js +369 -60
- package/dist/appidentity/index.js.map +1 -1
- package/dist/config/index.d.ts +46 -1
- package/dist/config/index.js +427 -62
- package/dist/config/index.js.map +1 -1
- package/dist/crucible/index.js +367 -59
- package/dist/crucible/index.js.map +1 -1
- package/dist/errors/index.d.ts +1 -1
- package/dist/errors/index.js +367 -59
- package/dist/errors/index.js.map +1 -1
- package/dist/foundry/index.d.ts +2 -1
- package/dist/foundry/index.js +368 -60
- package/dist/foundry/index.js.map +1 -1
- package/dist/fulencode/index.d.ts +102 -0
- package/dist/fulencode/index.js +806 -0
- package/dist/fulencode/index.js.map +1 -0
- package/dist/index.d.ts +4 -3
- package/dist/index.js +370 -61
- package/dist/index.js.map +1 -1
- package/dist/pathfinder/index.d.ts +1 -1
- package/dist/pathfinder/index.js +367 -59
- package/dist/pathfinder/index.js.map +1 -1
- package/dist/reports/license-inventory.csv +31 -24
- package/dist/schema/index.d.ts +16 -3
- package/dist/schema/index.js +368 -60
- package/dist/schema/index.js.map +1 -1
- package/dist/signals/index.d.ts +483 -395
- package/dist/signals/index.js +368 -60
- package/dist/signals/index.js.map +1 -1
- package/dist/telemetry/http/index.js +368 -59
- package/dist/telemetry/http/index.js.map +1 -1
- package/dist/telemetry/index.d.ts +1 -1
- package/dist/telemetry/index.js +367 -59
- package/dist/telemetry/index.js.map +1 -1
- package/dist/telemetry/prometheus/index.d.ts +1 -1
- package/dist/telemetry/prometheus/index.js +369 -59
- package/dist/telemetry/prometheus/index.js.map +1 -1
- package/dist/{types-BJswWpQC.d.ts → types-DdoeE7F5.d.ts} +1 -1
- package/dist/types-Dv5TERCM.d.ts +108 -0
- package/package.json +13 -8
- package/schemas/crucible-ts/library/fulencode/v1.0.0/README.md +37 -0
- package/schemas/crucible-ts/library/fulencode/v1.0.0/bom-result.schema.json +48 -0
- package/schemas/crucible-ts/library/fulencode/v1.0.0/decode-options.schema.json +60 -0
- package/schemas/crucible-ts/library/fulencode/v1.0.0/decoding-result.schema.json +70 -0
- package/schemas/crucible-ts/library/fulencode/v1.0.0/detect-options.schema.json +25 -0
- package/schemas/crucible-ts/library/fulencode/v1.0.0/detection-result.schema.json +57 -0
- package/schemas/crucible-ts/library/fulencode/v1.0.0/encode-options.schema.json +71 -0
- package/schemas/crucible-ts/library/fulencode/v1.0.0/encoding-result.schema.json +57 -0
- package/schemas/crucible-ts/library/fulencode/v1.0.0/fulencode-config.schema.json +8 -4
- package/schemas/crucible-ts/library/fulencode/v1.0.0/fulencode-error.schema.json +66 -0
- package/schemas/crucible-ts/library/fulencode/v1.0.0/normalization-result.schema.json +73 -0
- package/schemas/crucible-ts/library/fulencode/v1.0.0/normalize-options.schema.json +44 -0
- package/schemas/crucible-ts/meta/README.md +38 -2
- package/schemas/crucible-ts/meta/draft-04/schema.json +222 -0
- package/schemas/crucible-ts/meta/draft-06/schema.json +218 -0
- package/schemas/crucible-ts/meta/draft-2019-09/meta/applicator.json +93 -0
- package/schemas/crucible-ts/meta/draft-2019-09/meta/content.json +21 -0
- package/schemas/crucible-ts/meta/draft-2019-09/meta/core.json +58 -0
- package/schemas/crucible-ts/meta/draft-2019-09/meta/format.json +15 -0
- package/schemas/crucible-ts/meta/draft-2019-09/meta/meta-data.json +35 -0
- package/schemas/crucible-ts/meta/draft-2019-09/meta/validation.json +119 -0
- package/schemas/crucible-ts/meta/draft-2019-09/offline.schema.json +148 -0
- package/schemas/crucible-ts/meta/draft-2019-09/schema.json +62 -0
- package/schemas/crucible-ts/meta/fixtures/draft-04-sample.json +16 -0
- package/schemas/crucible-ts/meta/fixtures/draft-06-sample.json +16 -0
- package/schemas/crucible-ts/meta/fixtures/draft-07-sample.json +34 -0
- package/schemas/crucible-ts/meta/fixtures/draft-2019-09-sample.json +21 -0
- package/schemas/crucible-ts/meta/fixtures/draft-2020-12-sample.json +21 -0
- package/schemas/crucible-ts/taxonomy/library/fulencode/normalization-profiles/v1.0.0/profiles.yaml +16 -0
- package/schemas/crucible-ts/upstream/3leaps/crucible/PROVENANCE.md +64 -0
- package/schemas/crucible-ts/upstream/3leaps/crucible/config/classifiers/dimensions/access-tier.dimension.json +103 -0
- package/schemas/crucible-ts/upstream/3leaps/crucible/config/classifiers/dimensions/retention-lifecycle.dimension.json +103 -0
- package/schemas/crucible-ts/upstream/3leaps/crucible/config/classifiers/dimensions/schema-stability.dimension.json +100 -0
- package/schemas/crucible-ts/upstream/3leaps/crucible/config/classifiers/dimensions/sensitivity.dimension.json +130 -0
- package/schemas/crucible-ts/upstream/3leaps/crucible/config/classifiers/dimensions/velocity-mode.dimension.json +79 -0
- package/schemas/crucible-ts/upstream/3leaps/crucible/config/classifiers/dimensions/volatility.dimension.json +72 -0
- package/schemas/crucible-ts/upstream/3leaps/crucible/config/classifiers/dimensions/volume-tier.dimension.json +66 -0
- package/schemas/crucible-ts/upstream/3leaps/crucible/docs/catalog/classifiers/README.md +29 -0
- package/schemas/crucible-ts/upstream/3leaps/crucible/docs/standards/access-tier-classification.md +163 -0
- package/schemas/crucible-ts/upstream/3leaps/crucible/docs/standards/classifiers-framework.md +157 -0
- package/schemas/crucible-ts/upstream/3leaps/crucible/docs/standards/data-sensitivity-classification.md +259 -0
- package/schemas/crucible-ts/upstream/3leaps/crucible/docs/standards/retention-lifecycle-classification.md +200 -0
- package/schemas/crucible-ts/upstream/3leaps/crucible/docs/standards/schema-stability-classification.md +205 -0
- package/schemas/crucible-ts/upstream/3leaps/crucible/docs/standards/velocity-mode-classification.md +222 -0
- package/schemas/crucible-ts/upstream/3leaps/crucible/docs/standards/volatility-classification.md +209 -0
- package/schemas/crucible-ts/upstream/3leaps/crucible/docs/standards/volume-tier-classification.md +200 -0
- package/schemas/crucible-ts/upstream/3leaps/crucible/schemas/ailink/v0/README.md +48 -0
- package/schemas/crucible-ts/upstream/3leaps/{ailink → crucible/schemas/ailink}/v0/prompt.schema.json +4 -18
- package/schemas/crucible-ts/upstream/3leaps/{ailink → crucible/schemas/ailink}/v0/search-response.schema.json +7 -37
- package/schemas/crucible-ts/upstream/3leaps/crucible/schemas/classifiers/v0/dimension-definition.schema.json +247 -0
- package/schemas/crucible-ts/upstream/3leaps/crucible/schemas/classifiers/v0/sensitivity-level.schema.json +67 -0
- package/schemas/crucible-ts/upstream/3leaps/crucible/schemas/foundation/v0/error-response.schema.json +59 -0
- package/schemas/crucible-ts/upstream/3leaps/crucible/schemas/foundation/v0/lifecycle-phases.data.json +102 -0
- package/schemas/crucible-ts/upstream/3leaps/crucible/schemas/foundation/v0/lifecycle-phases.schema.json +101 -0
- package/schemas/crucible-ts/upstream/3leaps/crucible/schemas/foundation/v0/release-phase.schema.json +18 -0
- package/schemas/crucible-ts/upstream/3leaps/crucible/schemas/foundation/v0/types.schema.json +177 -0
- package/schemas/crucible-ts/upstream/3leaps/PROVENANCE.md +0 -43
- /package/schemas/crucible-ts/upstream/3leaps/{agentic → crucible/schemas/agentic}/v0/role-prompt.schema.json +0 -0
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
"module name","license","repository"
|
|
2
2
|
"@3leaps/string-metrics-wasm@0.3.8","MIT","https://github.com/3leaps/string-metrics-wasm"
|
|
3
|
+
"@ampproject/remapping@2.3.0","Apache-2.0","https://github.com/ampproject/remapping"
|
|
3
4
|
"@babel/helper-string-parser@7.27.1","MIT","https://github.com/babel/babel"
|
|
4
5
|
"@babel/helper-validator-identifier@7.28.5","MIT","https://github.com/babel/babel"
|
|
5
6
|
"@babel/parser@7.28.5","MIT","https://github.com/babel/babel"
|
|
@@ -7,16 +8,17 @@
|
|
|
7
8
|
"@bcoe/v8-coverage@1.0.2","MIT","https://github.com/bcoe/v8-coverage"
|
|
8
9
|
"@biomejs/biome@2.2.5","MIT OR Apache-2.0","https://github.com/biomejs/biome"
|
|
9
10
|
"@biomejs/cli-darwin-arm64@2.2.5","MIT OR Apache-2.0","https://github.com/biomejs/biome"
|
|
10
|
-
"@esbuild/darwin-arm64@0.21.5","MIT","https://github.com/evanw/esbuild"
|
|
11
11
|
"@esbuild/darwin-arm64@0.25.10","MIT","https://github.com/evanw/esbuild"
|
|
12
|
+
"@esbuild/darwin-arm64@0.27.2","MIT","https://github.com/evanw/esbuild"
|
|
12
13
|
"@fastify/ajv-compiler@4.0.5","MIT","https://github.com/fastify/ajv-compiler"
|
|
13
14
|
"@fastify/error@4.2.0","MIT","https://github.com/fastify/fastify-error"
|
|
14
15
|
"@fastify/fast-json-stringify-compiler@5.0.3","MIT","https://github.com/fastify/fast-json-stringify-compiler"
|
|
15
16
|
"@fastify/forwarded@3.0.1","MIT","https://github.com/fastify/forwarded"
|
|
16
17
|
"@fastify/merge-json-schemas@0.2.1","MIT","https://github.com/fastify/merge-json-schemas"
|
|
17
18
|
"@fastify/proxy-addr@5.1.0","MIT","https://github.com/fastify/proxy-addr"
|
|
18
|
-
"@fulmenhq/tsfulmen@0.2.
|
|
19
|
+
"@fulmenhq/tsfulmen@0.2.3","MIT","https://github.com/fulmenhq/tsfulmen"
|
|
19
20
|
"@isaacs/cliui@8.0.2","ISC","https://github.com/yargs/cliui"
|
|
21
|
+
"@istanbuljs/schema@0.1.3","MIT","https://github.com/istanbuljs/schema"
|
|
20
22
|
"@jridgewell/gen-mapping@0.3.13","MIT","https://github.com/jridgewell/sourcemaps"
|
|
21
23
|
"@jridgewell/resolve-uri@3.1.2","MIT","https://github.com/jridgewell/resolve-uri"
|
|
22
24
|
"@jridgewell/sourcemap-codec@1.5.5","MIT","https://github.com/jridgewell/sourcemaps"
|
|
@@ -29,10 +31,13 @@
|
|
|
29
31
|
"@pkgjs/parseargs@0.11.0","MIT","https://github.com/pkgjs/parseargs"
|
|
30
32
|
"@polka/url@1.0.0-next.29","MIT","https://github.com/lukeed/polka"
|
|
31
33
|
"@rollup/rollup-darwin-arm64@4.52.4","MIT","https://github.com/rollup/rollup"
|
|
34
|
+
"@standard-schema/spec@1.1.0","MIT","https://github.com/standard-schema/standard-schema"
|
|
32
35
|
"@types/archiver@6.0.4","MIT","https://github.com/DefinitelyTyped/DefinitelyTyped"
|
|
33
36
|
"@types/body-parser@1.19.6","MIT","https://github.com/DefinitelyTyped/DefinitelyTyped"
|
|
34
37
|
"@types/bun@1.2.23","MIT","https://github.com/DefinitelyTyped/DefinitelyTyped"
|
|
38
|
+
"@types/chai@5.2.3","MIT","https://github.com/DefinitelyTyped/DefinitelyTyped"
|
|
35
39
|
"@types/connect@3.4.38","MIT","https://github.com/DefinitelyTyped/DefinitelyTyped"
|
|
40
|
+
"@types/deep-eql@4.0.2","MIT","https://github.com/DefinitelyTyped/DefinitelyTyped"
|
|
36
41
|
"@types/estree@1.0.8","MIT","https://github.com/DefinitelyTyped/DefinitelyTyped"
|
|
37
42
|
"@types/express-serve-static-core@5.1.0","MIT","https://github.com/DefinitelyTyped/DefinitelyTyped"
|
|
38
43
|
"@types/express@5.0.5","MIT","https://github.com/DefinitelyTyped/DefinitelyTyped"
|
|
@@ -48,20 +53,19 @@
|
|
|
48
53
|
"@types/send@1.2.1","MIT","https://github.com/DefinitelyTyped/DefinitelyTyped"
|
|
49
54
|
"@types/serve-static@1.15.10","MIT","https://github.com/DefinitelyTyped/DefinitelyTyped"
|
|
50
55
|
"@types/unzipper@0.10.11","MIT","https://github.com/DefinitelyTyped/DefinitelyTyped"
|
|
51
|
-
"@vitest/coverage-v8@4.0.
|
|
52
|
-
"@vitest/expect@
|
|
53
|
-
"@vitest/mocker@
|
|
54
|
-
"@vitest/pretty-format@
|
|
55
|
-
"@vitest/
|
|
56
|
-
"@vitest/
|
|
57
|
-
"@vitest/
|
|
58
|
-
"@vitest/
|
|
59
|
-
"@vitest/
|
|
60
|
-
"@vitest/utils@2.1.9","MIT","https://github.com/vitest-dev/vitest"
|
|
61
|
-
"@vitest/utils@4.0.7","MIT","https://github.com/vitest-dev/vitest"
|
|
56
|
+
"@vitest/coverage-v8@4.0.18","MIT","https://github.com/vitest-dev/vitest"
|
|
57
|
+
"@vitest/expect@4.0.18","MIT","https://github.com/vitest-dev/vitest"
|
|
58
|
+
"@vitest/mocker@4.0.18","MIT","https://github.com/vitest-dev/vitest"
|
|
59
|
+
"@vitest/pretty-format@4.0.18","MIT","https://github.com/vitest-dev/vitest"
|
|
60
|
+
"@vitest/runner@4.0.18","MIT","https://github.com/vitest-dev/vitest"
|
|
61
|
+
"@vitest/snapshot@4.0.18","MIT","https://github.com/vitest-dev/vitest"
|
|
62
|
+
"@vitest/spy@4.0.18","MIT","https://github.com/vitest-dev/vitest"
|
|
63
|
+
"@vitest/ui@4.0.18","MIT","https://github.com/vitest-dev/vitest"
|
|
64
|
+
"@vitest/utils@4.0.18","MIT","https://github.com/vitest-dev/vitest"
|
|
62
65
|
"abort-controller@3.0.0","MIT","https://github.com/mysticatea/abort-controller"
|
|
63
66
|
"abstract-logging@2.0.1","MIT","https://github.com/jsumners/abstract-logging"
|
|
64
67
|
"acorn@8.15.0","MIT","https://github.com/acornjs/acorn"
|
|
68
|
+
"ajv-draft-04@1.0.0","MIT","https://github.com/ajv-validator/ajv-draft-04"
|
|
65
69
|
"ajv-formats@3.0.1","MIT","https://github.com/ajv-validator/ajv-formats"
|
|
66
70
|
"ajv@8.17.1","MIT","https://github.com/ajv-validator/ajv"
|
|
67
71
|
"ansi-regex@5.0.1","MIT","https://github.com/chalk/ansi-regex"
|
|
@@ -72,7 +76,7 @@
|
|
|
72
76
|
"archiver-utils@5.0.2","MIT","https://github.com/archiverjs/archiver-utils"
|
|
73
77
|
"archiver@7.0.1","MIT","https://github.com/archiverjs/node-archiver"
|
|
74
78
|
"assertion-error@2.0.1","MIT","https://github.com/chaijs/assertion-error"
|
|
75
|
-
"ast-v8-to-istanbul@0.3.
|
|
79
|
+
"ast-v8-to-istanbul@0.3.10","MIT","https://github.com/AriPerkkio/ast-v8-to-istanbul"
|
|
76
80
|
"async@3.2.6","MIT","https://github.com/caolan/async"
|
|
77
81
|
"atomic-sleep@1.0.0","MIT","https://github.com/davidmarkclements/atomic-sleep"
|
|
78
82
|
"avvio@9.1.0","MIT","https://github.com/fastify/avvio"
|
|
@@ -90,7 +94,7 @@
|
|
|
90
94
|
"bun-types@1.2.23","MIT","https://github.com/oven-sh/bun"
|
|
91
95
|
"bundle-require@5.1.0","MIT",""
|
|
92
96
|
"cac@6.7.14","MIT","https://github.com/egoist/cac"
|
|
93
|
-
"chai@
|
|
97
|
+
"chai@6.2.2","MIT","https://github.com/chaijs/chai"
|
|
94
98
|
"check-error@2.1.1","MIT","https://github.com/chaijs/check-error"
|
|
95
99
|
"chokidar@4.0.3","MIT","https://github.com/paulmillr/chokidar"
|
|
96
100
|
"color-convert@2.0.1","MIT","https://github.com/Qix-/color-convert"
|
|
@@ -114,8 +118,8 @@
|
|
|
114
118
|
"emoji-regex@8.0.0","MIT","https://github.com/mathiasbynens/emoji-regex"
|
|
115
119
|
"emoji-regex@9.2.2","MIT","https://github.com/mathiasbynens/emoji-regex"
|
|
116
120
|
"es-module-lexer@1.7.0","MIT","https://github.com/guybedford/es-module-lexer"
|
|
117
|
-
"esbuild@0.21.5","MIT","https://github.com/evanw/esbuild"
|
|
118
121
|
"esbuild@0.25.10","MIT","https://github.com/evanw/esbuild"
|
|
122
|
+
"esbuild@0.27.2","MIT","https://github.com/evanw/esbuild"
|
|
119
123
|
"estree-walker@3.0.3","MIT","https://github.com/Rich-Harris/estree-walker"
|
|
120
124
|
"event-target-shim@5.0.1","MIT","https://github.com/mysticatea/event-target-shim"
|
|
121
125
|
"events-universal@1.0.1","Apache-2.0","https://github.com/holepunchto/events-universal"
|
|
@@ -177,7 +181,8 @@
|
|
|
177
181
|
"loupe@3.2.1","MIT","https://github.com/chaijs/loupe"
|
|
178
182
|
"lru-cache@10.4.3","ISC","https://github.com/isaacs/node-lru-cache"
|
|
179
183
|
"magic-string@0.30.19","MIT","https://github.com/rich-harris/magic-string"
|
|
180
|
-
"
|
|
184
|
+
"magic-string@0.30.21","MIT","https://github.com/Rich-Harris/magic-string"
|
|
185
|
+
"magicast@0.5.1","MIT","https://github.com/unjs/magicast"
|
|
181
186
|
"make-dir@4.0.0","MIT","https://github.com/sindresorhus/make-dir"
|
|
182
187
|
"merge2@1.4.1","MIT","https://github.com/teambition/merge2"
|
|
183
188
|
"micromatch@4.0.8","MIT","https://github.com/micromatch/micromatch"
|
|
@@ -193,11 +198,11 @@
|
|
|
193
198
|
"node-int64@0.4.0","MIT","https://github.com/broofa/node-int64"
|
|
194
199
|
"normalize-path@3.0.0","MIT","https://github.com/jonschlinkert/normalize-path"
|
|
195
200
|
"object-assign@4.1.1","MIT","https://github.com/sindresorhus/object-assign"
|
|
201
|
+
"obug@2.1.1","MIT","https://github.com/sxzz/obug"
|
|
196
202
|
"on-exit-leak-free@2.1.2","MIT","https://github.com/mcollina/on-exit-or-gc"
|
|
197
203
|
"package-json-from-dist@1.0.1","BlueOak-1.0.0","https://github.com/isaacs/package-json-from-dist"
|
|
198
204
|
"path-key@3.1.1","MIT","https://github.com/sindresorhus/path-key"
|
|
199
205
|
"path-scurry@1.11.1","BlueOak-1.0.0","https://github.com/isaacs/path-scurry"
|
|
200
|
-
"pathe@1.1.2","MIT","https://github.com/unjs/pathe"
|
|
201
206
|
"pathe@2.0.3","MIT","https://github.com/unjs/pathe"
|
|
202
207
|
"pathval@2.0.1","MIT","https://github.com/chaijs/pathval"
|
|
203
208
|
"picocolors@1.1.1","ISC","https://github.com/alexeyraspopov/picocolors"
|
|
@@ -252,7 +257,7 @@
|
|
|
252
257
|
"split2@4.2.0","ISC","https://github.com/mcollina/split2"
|
|
253
258
|
"sse4_crc32@6.0.1","MIT","https://github.com/anandsuresh/sse4_crc32"
|
|
254
259
|
"stackback@0.0.2","MIT","https://github.com/shtylman/node-stackback"
|
|
255
|
-
"std-env@3.
|
|
260
|
+
"std-env@3.10.0","MIT","https://github.com/unjs/std-env"
|
|
256
261
|
"streamx@2.23.0","MIT","https://github.com/mafintosh/streamx"
|
|
257
262
|
"string-width@4.2.3","MIT","https://github.com/sindresorhus/string-width"
|
|
258
263
|
"string-width@5.1.2","MIT","https://github.com/sindresorhus/string-width"
|
|
@@ -260,21 +265,23 @@
|
|
|
260
265
|
"string_decoder@1.3.0","MIT","https://github.com/nodejs/string_decoder"
|
|
261
266
|
"strip-ansi@6.0.1","MIT","https://github.com/chalk/strip-ansi"
|
|
262
267
|
"strip-ansi@7.1.2","MIT","https://github.com/chalk/strip-ansi"
|
|
268
|
+
"strip-literal@3.1.0","MIT","https://github.com/antfu/strip-literal"
|
|
263
269
|
"sucrase@3.35.0","MIT","https://github.com/alangpierce/sucrase"
|
|
264
270
|
"supports-color@7.2.0","MIT","https://github.com/chalk/supports-color"
|
|
265
271
|
"tar-stream@3.1.7","MIT","https://github.com/mafintosh/tar-stream"
|
|
266
272
|
"tdigest@0.1.2","MIT","https://github.com/welch/tdigest"
|
|
273
|
+
"test-exclude@7.0.1","ISC","https://github.com/istanbuljs/test-exclude"
|
|
267
274
|
"text-decoder@1.2.3","Apache-2.0","https://github.com/holepunchto/text-decoder"
|
|
268
275
|
"thenify-all@1.6.0","MIT","https://github.com/thenables/thenify-all"
|
|
269
276
|
"thenify@3.3.1","MIT","https://github.com/thenables/thenify"
|
|
270
277
|
"thread-stream@3.1.0","MIT","https://github.com/mcollina/thread-stream"
|
|
271
278
|
"tinybench@2.9.0","MIT","https://github.com/tinylibs/tinybench"
|
|
272
279
|
"tinyexec@0.3.2","MIT","https://github.com/tinylibs/tinyexec"
|
|
280
|
+
"tinyexec@1.0.2","MIT","https://github.com/tinylibs/tinyexec"
|
|
273
281
|
"tinyglobby@0.2.15","MIT","https://github.com/SuperchupuDev/tinyglobby"
|
|
274
282
|
"tinypool@1.1.1","MIT","https://github.com/tinylibs/tinypool"
|
|
275
|
-
"tinyrainbow@1.2.0","MIT","https://github.com/tinylibs/tinyrainbow"
|
|
276
283
|
"tinyrainbow@3.0.3","MIT","https://github.com/tinylibs/tinyrainbow"
|
|
277
|
-
"tinyspy@
|
|
284
|
+
"tinyspy@4.0.4","MIT","https://github.com/tinylibs/tinyspy"
|
|
278
285
|
"to-regex-range@5.0.1","MIT","https://github.com/micromatch/to-regex-range"
|
|
279
286
|
"toad-cache@3.7.0","MIT","https://github.com/kibertoad/toad-cache"
|
|
280
287
|
"totalist@3.0.1","MIT","https://github.com/lukeed/totalist"
|
|
@@ -289,9 +296,9 @@
|
|
|
289
296
|
"universalify@2.0.1","MIT","https://github.com/RyanZim/universalify"
|
|
290
297
|
"unzipper@0.12.3","MIT","https://github.com/ZJONSSON/node-unzipper"
|
|
291
298
|
"util-deprecate@1.0.2","MIT","https://github.com/TooTallNate/util-deprecate"
|
|
292
|
-
"vite-node@2.
|
|
293
|
-
"vite@
|
|
294
|
-
"vitest@
|
|
299
|
+
"vite-node@3.2.4","MIT","https://github.com/vitest-dev/vitest"
|
|
300
|
+
"vite@7.3.1","MIT","https://github.com/vitejs/vite"
|
|
301
|
+
"vitest@4.0.18","MIT","https://github.com/vitest-dev/vitest"
|
|
295
302
|
"webidl-conversions@4.0.2","BSD-2-Clause","https://github.com/jsdom/webidl-conversions"
|
|
296
303
|
"whatwg-url@7.1.0","MIT","https://github.com/jsdom/whatwg-url"
|
|
297
304
|
"which@2.0.2","ISC","https://github.com/isaacs/node-which"
|
package/dist/schema/index.d.ts
CHANGED
|
@@ -1,6 +1,19 @@
|
|
|
1
|
+
import Ajv from 'ajv';
|
|
1
2
|
import { Command } from 'commander';
|
|
2
|
-
import { a as CLIOptions, b as SchemaValidationDiagnostic, c as SchemaSource, E as ExportSchemaOptions, d as ExportSchemaResult, S as SchemaValidationResult, e as SchemaInput, f as SchemaNormalizationOptions, g as SchemaRegistryOptions, h as SchemaMetadata, C as CompiledValidator } from '../types-
|
|
3
|
-
export { A as AjvError, i as SchemaComparisonResult, j as SchemaExportFormat, k as SchemaFormat, l as SchemaProvenanceMetadata, m as SchemaValidationOptions } from '../types-
|
|
3
|
+
import { a as CLIOptions, b as SchemaValidationDiagnostic, c as SchemaSource, E as ExportSchemaOptions, d as ExportSchemaResult, S as SchemaValidationResult, e as SchemaInput, f as SchemaNormalizationOptions, g as SchemaRegistryOptions, h as SchemaMetadata, C as CompiledValidator } from '../types-DdoeE7F5.js';
|
|
4
|
+
export { A as AjvError, i as SchemaComparisonResult, j as SchemaExportFormat, k as SchemaFormat, l as SchemaProvenanceMetadata, m as SchemaValidationOptions } from '../types-DdoeE7F5.js';
|
|
5
|
+
|
|
6
|
+
interface FulmenAjvFormatsOptions {
|
|
7
|
+
mode?: "fast" | "full";
|
|
8
|
+
formats?: string[];
|
|
9
|
+
}
|
|
10
|
+
/**
|
|
11
|
+
* Apply Fulmen-standard AJV format support.
|
|
12
|
+
*
|
|
13
|
+
* Useful when configuring AJV in other frameworks (e.g. Fastify) so JSON Schema
|
|
14
|
+
* `format` keywords are enforced consistently.
|
|
15
|
+
*/
|
|
16
|
+
declare function applyFulmenAjvFormats(ajv: Ajv, options?: FulmenAjvFormatsOptions): Ajv;
|
|
4
17
|
|
|
5
18
|
/**
|
|
6
19
|
* Schema CLI - Commander-based CLI for schema operations
|
|
@@ -385,4 +398,4 @@ declare function validateFileBySchemaId(filePath: string, schemaId: string, regi
|
|
|
385
398
|
*/
|
|
386
399
|
declare const VERSION = "0.1.0";
|
|
387
400
|
|
|
388
|
-
export { CLIOptions, CompiledValidator, ExportErrorReason, ExportSchemaOptions, ExportSchemaResult, SchemaExportError, SchemaInput, SchemaMetadata, SchemaNormalizationOptions, SchemaRegistry, SchemaRegistryOptions, SchemaSource, SchemaValidationDiagnostic, SchemaValidationError, SchemaValidationResult, VERSION, clearCache, compareSchemas, compileSchema, compileSchemaById, countDiagnostics, createCLI, createDiagnostic, detectGoneat, exportSchema, formatDiagnostics, formatValidationResult, getCacheSize, getSchema, getSchemaByPath, getSchemaRegistry, groupDiagnosticsBySeverity, hasSchema, isGoneatAvailable, isValidationError, listSchemas, normalizePointer, normalizeSchema, runGoneatValidation, stripProvenance, validateData, validateDataBySchemaId, validateFile, validateFileBySchemaId, validateSchema };
|
|
401
|
+
export { CLIOptions, CompiledValidator, ExportErrorReason, ExportSchemaOptions, ExportSchemaResult, type FulmenAjvFormatsOptions, SchemaExportError, SchemaInput, SchemaMetadata, SchemaNormalizationOptions, SchemaRegistry, SchemaRegistryOptions, SchemaSource, SchemaValidationDiagnostic, SchemaValidationError, SchemaValidationResult, VERSION, applyFulmenAjvFormats, clearCache, compareSchemas, compileSchema, compileSchemaById, countDiagnostics, createCLI, createDiagnostic, detectGoneat, exportSchema, formatDiagnostics, formatValidationResult, getCacheSize, getSchema, getSchemaByPath, getSchemaRegistry, groupDiagnosticsBySeverity, hasSchema, isGoneatAvailable, isValidationError, listSchemas, normalizePointer, normalizeSchema, runGoneatValidation, stripProvenance, validateData, validateDataBySchemaId, validateFile, validateFileBySchemaId, validateSchema };
|