@osdk/seed-compiler 0.2.0 → 0.3.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/seed-compiler
2
2
 
3
+ ## 0.3.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 60aff19: Bump `@osdk/foundry.*` and `@osdk/internal.foundry.*` catalog entries from `2.57.0` to `2.61.0`. Includes type-fixups for the new `applyScenario` / `scenarioReference` discriminated-union variants and the now-required `QueryParameterV2.required` field.
8
+
9
+ ### Patch Changes
10
+
11
+ - @osdk/seed-helpers@0.7.0
12
+
3
13
  ## 0.2.0
4
14
 
5
15
  ### 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.2.0" ?? "").wrap(Math.min(120, yargs().terminalWidth())).strict().help().options({
26
+ const opts = await yargs(hideBin(args)).version("0.3.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.2.0" ?? "").wrap(Math.min(120, yargs().terminalWidth())).strict().help().options({
26
+ const opts = await yargs(hideBin(args)).version("0.3.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.2.0",
3
+ "version": "0.3.0",
4
4
  "license": "Apache-2.0",
5
5
  "repository": {
6
6
  "type": "git",
@@ -27,20 +27,20 @@
27
27
  }
28
28
  },
29
29
  "dependencies": {
30
- "@osdk/foundry.ontologies": "2.57.0",
30
+ "@osdk/foundry.ontologies": "2.61.0",
31
31
  "consola": "^3.4.2",
32
32
  "jiti": "^2.5.1",
33
33
  "tiny-invariant": "^1.3.3",
34
34
  "yargs": "^17.7.2",
35
- "@osdk/seed-helpers": "~0.2.0"
35
+ "@osdk/seed-helpers": "~0.7.0"
36
36
  },
37
37
  "devDependencies": {
38
38
  "@types/node": "^20.19.13",
39
39
  "@types/yargs": "^17.0.33",
40
40
  "typescript": "~5.5.4",
41
41
  "vitest": "^3.2.4",
42
- "@osdk/monorepo.tsconfig": "~0.7.0",
43
- "@osdk/monorepo.api-extractor": "~0.7.0"
42
+ "@osdk/monorepo.api-extractor": "~0.7.0",
43
+ "@osdk/monorepo.tsconfig": "~0.7.0"
44
44
  },
45
45
  "publishConfig": {
46
46
  "access": "public"