@neverblink/linkml 0.8.8 → 0.8.9

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.
Files changed (4) hide show
  1. package/index.d.ts +2 -2
  2. package/main.js +31231 -29841
  3. package/main.js.map +4 -4
  4. package/package.json +5 -1
package/index.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  // AUTO-GENERATED from generator/src-js/eu/neverblink/linkml/js/LinkMlJsApi.scala.
2
- // Regenerated by ./mill generator.js.npmPackage.
2
+ // Do not edit by hand — regenerate with ./mill uiTypes (or generator.js.npmPackage).
3
3
 
4
4
  export interface LinkMLApi {
5
5
  /**
@@ -26,7 +26,7 @@ export interface LinkMLApi {
26
26
  * Generate Scala code from the provided LinkML model. This is primarily used for the metamodel
27
27
  * @param mainSchema Main LinkML model in YAML format. It may import other models using LinkML `imports`, but all imports must be made available in the [[importMap]].
28
28
  * @param importMap JS dictionary (object) containing a mapping from filename to LinkML models (in YAML format)
29
- * @param `package` Package to generate the classes in
29
+ * @param packageName Package to generate the classes in
30
30
  * @returns JS dictionary (object) containing a mapping from filename to the generated Scala code.
31
31
  */
32
32
  scala(mainSchema: string, importMap: Record<string, string>, packageName: string): Record<string, string>;