@fulmenhq/tsfulmen 0.3.2 → 0.3.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 +14 -0
- package/dist/appidentity/index.d.ts +15 -5
- package/dist/appidentity/index.js +12 -7
- package/dist/appidentity/index.js.map +1 -1
- package/dist/bin/prometheus-cli.js +12 -7
- package/dist/bin/prometheus-cli.js.map +1 -1
- package/dist/bin/schema-cli.js.map +1 -1
- package/dist/config/index.d.ts +69 -11
- package/dist/config/index.js +18 -7
- package/dist/config/index.js.map +1 -1
- package/dist/foundry/index.d.ts +1 -1
- package/dist/index.d.ts +2 -2
- package/dist/index.js +13 -8
- package/dist/index.js.map +1 -1
- package/dist/reports/license-inventory.csv +1 -1
- package/dist/schema/index.js.map +1 -1
- package/dist/signals/index.d.ts +1 -1
- package/dist/telemetry/http/index.js.map +1 -1
- package/dist/telemetry/prometheus/index.js +12 -7
- package/dist/telemetry/prometheus/index.js.map +1 -1
- package/dist/{types-Dv5TERCM.d.ts → types-CHDvDRCf.d.ts} +17 -1
- package/package.json +1 -1
|
@@ -104,5 +104,21 @@ interface LoadIdentityOptions {
|
|
|
104
104
|
*/
|
|
105
105
|
readonly skipValidation?: boolean;
|
|
106
106
|
}
|
|
107
|
+
/**
|
|
108
|
+
* Options for registering an embedded identity
|
|
109
|
+
*/
|
|
110
|
+
interface RegisterEmbeddedIdentityOptions {
|
|
111
|
+
/**
|
|
112
|
+
* Skip schema validation on registration.
|
|
113
|
+
*
|
|
114
|
+
* The schema registry is filesystem-backed and is unavailable inside a
|
|
115
|
+
* `bun --compile` single-file binary. Set this to register a build-time
|
|
116
|
+
* embedded identity (already validated in dev/CI) without hitting the
|
|
117
|
+
* absent registry. Symmetric with {@link LoadIdentityOptions.skipValidation}.
|
|
118
|
+
*
|
|
119
|
+
* Only use when the identity is known-good (pre-validated).
|
|
120
|
+
*/
|
|
121
|
+
readonly skipValidation?: boolean;
|
|
122
|
+
}
|
|
107
123
|
|
|
108
|
-
export type { AppIdentity as A, Identity as I, LoadIdentityOptions as L, PythonMetadata as P,
|
|
124
|
+
export type { AppIdentity as A, Identity as I, LoadIdentityOptions as L, PythonMetadata as P, RegisterEmbeddedIdentityOptions as R, IdentityMetadata as a, RepositoryCategory as b };
|
package/package.json
CHANGED