@osdk/maker 0.9.0-beta.7 → 0.9.0-beta.8
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 +11 -0
- package/build/browser/cli/main.js +1 -1
- package/build/esm/cli/main.js +1 -1
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# @osdk/maker
|
|
2
2
|
|
|
3
|
+
## 0.9.0-beta.8
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- b8a1a58: Add nullability to markings because of course they need to be nullable. This sucks in the data model, I should talk to the ontology team about this.
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies [9f3807c]
|
|
12
|
+
- @osdk/api@2.1.0-beta.8
|
|
13
|
+
|
|
3
14
|
## 0.9.0-beta.7
|
|
4
15
|
|
|
5
16
|
### Minor Changes
|
|
@@ -26,7 +26,7 @@ import { defineOntology } from "../api/defineOntology.js";
|
|
|
26
26
|
import { defineSharedPropertyType } from "../api/defineSpt.js";
|
|
27
27
|
const apiNamespaceRegex = /^[a-z0-9-]+(\.[a-z0-9-]+)*\.$/;
|
|
28
28
|
export default async function main(args = process.argv) {
|
|
29
|
-
const commandLineOpts = await yargs(hideBin(args)).version("0.9.0-beta.
|
|
29
|
+
const commandLineOpts = await yargs(hideBin(args)).version("0.9.0-beta.8" ?? "").wrap(Math.min(150, yargs().terminalWidth())).strict().help().options({
|
|
30
30
|
input: {
|
|
31
31
|
alias: "i",
|
|
32
32
|
describe: "Input file",
|
package/build/esm/cli/main.js
CHANGED
|
@@ -26,7 +26,7 @@ import { defineOntology } from "../api/defineOntology.js";
|
|
|
26
26
|
import { defineSharedPropertyType } from "../api/defineSpt.js";
|
|
27
27
|
const apiNamespaceRegex = /^[a-z0-9-]+(\.[a-z0-9-]+)*\.$/;
|
|
28
28
|
export default async function main(args = process.argv) {
|
|
29
|
-
const commandLineOpts = await yargs(hideBin(args)).version("0.9.0-beta.
|
|
29
|
+
const commandLineOpts = await yargs(hideBin(args)).version("0.9.0-beta.8" ?? "").wrap(Math.min(150, yargs().terminalWidth())).strict().help().options({
|
|
30
30
|
input: {
|
|
31
31
|
alias: "i",
|
|
32
32
|
describe: "Input file",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@osdk/maker",
|
|
3
|
-
"version": "0.9.0-beta.
|
|
3
|
+
"version": "0.9.0-beta.8",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -24,17 +24,17 @@
|
|
|
24
24
|
"tiny-invariant": "^1.3.3",
|
|
25
25
|
"ts-node": "^10.9.2",
|
|
26
26
|
"yargs": "^17.7.2",
|
|
27
|
-
"@osdk/api": "~2.1.0-beta.
|
|
27
|
+
"@osdk/api": "~2.1.0-beta.8"
|
|
28
28
|
},
|
|
29
29
|
"devDependencies": {
|
|
30
30
|
"@osdk/internal.foundry.core": "2.3.0",
|
|
31
31
|
"@types/yargs": "^17.0.32",
|
|
32
32
|
"typescript": "~5.5.4",
|
|
33
33
|
"vitest": "^2.1.2",
|
|
34
|
-
"@osdk/
|
|
35
|
-
"@osdk/monorepo.tsconfig": "~0.0.0",
|
|
34
|
+
"@osdk/client.unstable": "~2.1.0-beta.8",
|
|
36
35
|
"@osdk/monorepo.tsup": "~0.0.0",
|
|
37
|
-
"@osdk/
|
|
36
|
+
"@osdk/monorepo.api-extractor": "~0.0.0",
|
|
37
|
+
"@osdk/monorepo.tsconfig": "~0.0.0"
|
|
38
38
|
},
|
|
39
39
|
"publishConfig": {
|
|
40
40
|
"access": "public"
|