@osdk/seed-compiler 0.4.0 → 0.5.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,11 @@
1
1
  # @osdk/seed-compiler
2
2
 
3
+ ## 0.5.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
+
3
9
  ## 0.4.0
4
10
 
5
11
  ### Minor Changes
@@ -23,7 +23,7 @@ import { hideBin } from "yargs/helpers";
23
23
  import { compileSeedData } from "../compileSeedData.js";
24
24
  import { schemaFromMetadata } from "../schema.js";
25
25
  export default async function main(args = process.argv) {
26
- const opts = await yargs(hideBin(args)).version("0.4.0" ?? "").wrap(Math.min(120, yargs().terminalWidth())).strict().help().options({
26
+ const opts = await yargs(hideBin(args)).version("0.5.0" ?? "").wrap(Math.min(120, yargs().terminalWidth())).strict().help().options({
27
27
  metadata: {
28
28
  describe: "Path to the ontology-metadata.json file written by the SDK generator. " + "Provides primary-key field names and property wire types.",
29
29
  type: "string",
@@ -23,7 +23,7 @@ import { hideBin } from "yargs/helpers";
23
23
  import { compileSeedData } from "../compileSeedData.js";
24
24
  import { schemaFromMetadata } from "../schema.js";
25
25
  export default async function main(args = process.argv) {
26
- const opts = await yargs(hideBin(args)).version("0.4.0" ?? "").wrap(Math.min(120, yargs().terminalWidth())).strict().help().options({
26
+ const opts = await yargs(hideBin(args)).version("0.5.0" ?? "").wrap(Math.min(120, yargs().terminalWidth())).strict().help().options({
27
27
  metadata: {
28
28
  describe: "Path to the ontology-metadata.json file written by the SDK generator. " + "Provides primary-key field names and property wire types.",
29
29
  type: "string",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@osdk/seed-compiler",
3
- "version": "0.4.0",
3
+ "version": "0.5.0",
4
4
  "license": "Apache-2.0",
5
5
  "repository": {
6
6
  "type": "git",
@@ -27,7 +27,7 @@
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
  "jiti": "^2.5.1",
33
33
  "tiny-invariant": "^1.3.3",