@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.
@@ -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, RepositoryCategory as R, IdentityMetadata as a };
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
@@ -189,5 +189,5 @@
189
189
  },
190
190
  "type": "module",
191
191
  "types": "./dist/index.d.ts",
192
- "version": "0.3.2"
192
+ "version": "0.3.3"
193
193
  }