@osdk/maker-import 0.6.0 → 0.7.0

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 CHANGED
@@ -1,5 +1,15 @@
1
1
  # @osdk/maker-import
2
2
 
3
+ ## 0.7.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 5ff7aa5: Bump `@osdk/foundry.*` and `@osdk/internal.foundry.*` catalog entries from `2.61.0` to `2.63.0`. The OntologyScenarios endpoints now expose a `preview` query-param slot, so `createScenario` and the `EXPERIMENTAL_ScenarioClient` read methods pass `{ preview: true }` directly instead of relying on a fetch-level URL rewrite.
8
+
9
+ ### Patch Changes
10
+
11
+ - @osdk/client.unstable@2.27.0
12
+
3
13
  ## 0.6.0
4
14
 
5
15
  ### Minor Changes
@@ -21,7 +21,7 @@ import yargs from "yargs";
21
21
  import { hideBin } from "yargs/helpers";
22
22
  import { writeImportedOntology } from "../generate/writeImportedOntology.js";
23
23
  export default async function main(args = process.argv) {
24
- const commandLineOpts = await yargs(hideBin(args)).version("0.6.0" ?? "").wrap(Math.min(150, yargs().terminalWidth())).strict().help().options({
24
+ const commandLineOpts = await yargs(hideBin(args)).version("0.7.0" ?? "").wrap(Math.min(150, yargs().terminalWidth())).strict().help().options({
25
25
  input: {
26
26
  alias: "i",
27
27
  describe: "Path to OntologyFullMetadata JSON file",
@@ -599,7 +599,7 @@ export const ${varName}: ${typeName} = wrapWithProxy(${varName}_base);
599
599
 
600
600
  // src/cli/main.ts
601
601
  async function main(args = process.argv) {
602
- const commandLineOpts = await yargs__default.default(helpers.hideBin(args)).version("0.6.0").wrap(Math.min(150, yargs__default.default().terminalWidth())).strict().help().options({
602
+ const commandLineOpts = await yargs__default.default(helpers.hideBin(args)).version("0.7.0").wrap(Math.min(150, yargs__default.default().terminalWidth())).strict().help().options({
603
603
  input: {
604
604
  alias: "i",
605
605
  describe: "Path to OntologyFullMetadata JSON file",
@@ -21,7 +21,7 @@ import yargs from "yargs";
21
21
  import { hideBin } from "yargs/helpers";
22
22
  import { writeImportedOntology } from "../generate/writeImportedOntology.js";
23
23
  export default async function main(args = process.argv) {
24
- const commandLineOpts = await yargs(hideBin(args)).version("0.6.0" ?? "").wrap(Math.min(150, yargs().terminalWidth())).strict().help().options({
24
+ const commandLineOpts = await yargs(hideBin(args)).version("0.7.0" ?? "").wrap(Math.min(150, yargs().terminalWidth())).strict().help().options({
25
25
  input: {
26
26
  alias: "i",
27
27
  describe: "Path to OntologyFullMetadata JSON file",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@osdk/maker-import",
3
- "version": "0.6.0",
3
+ "version": "0.7.0",
4
4
  "license": "Apache-2.0",
5
5
  "repository": {
6
6
  "type": "git",
@@ -27,19 +27,19 @@
27
27
  }
28
28
  },
29
29
  "dependencies": {
30
- "@osdk/foundry.ontologies": "2.61.0",
30
+ "@osdk/foundry.ontologies": "2.63.0",
31
31
  "consola": "^3.4.2",
32
32
  "yargs": "^17.7.2",
33
- "@osdk/maker": "~0.31.0",
34
- "@osdk/client.unstable": "~2.25.0"
33
+ "@osdk/client.unstable": "~2.27.0",
34
+ "@osdk/maker": "~0.31.0"
35
35
  },
36
36
  "devDependencies": {
37
37
  "@types/node": "^20.19.13",
38
38
  "@types/yargs": "^17.0.33",
39
39
  "typescript": "~5.5.4",
40
40
  "vitest": "^3.2.4",
41
- "@osdk/monorepo.api-extractor": "~0.7.0",
42
- "@osdk/monorepo.tsconfig": "~0.7.0"
41
+ "@osdk/monorepo.tsconfig": "~0.7.0",
42
+ "@osdk/monorepo.api-extractor": "~0.7.0"
43
43
  },
44
44
  "publishConfig": {
45
45
  "access": "public"