@neverblink/linkml 0.16.0 → 0.16.1

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 +1 -1
  2. package/main.js +38501 -37637
  3. package/main.js.map +4 -4
  4. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -124,7 +124,7 @@ export interface LinkMLApi {
124
124
  /**
125
125
  * Generate JSON dictionaries that translate the LinkML name to specific frameworks. This is useful when the framework symbols are significant and must be known, like when constructing a query that is meant to be executed against a database conformant to a LinkML schema.
126
126
  * @param schema A [[SchemaView]] handle created with [[loadFromString]] or [[loadFromPath]].
127
- * @param target Target framework to generate translations for. One of "base", "uri", "scala", or "graphql".
127
+ * @param target Target framework to generate translations for. One of "base", "uri", "scala", "graphql", "frictionless", "ossie", or "erdiagram".
128
128
  * @returns Translation dictionary for translating the linkml names to framework names.
129
129
  */
130
130
  translation(schema: SchemaView, target: string): string;