@osdk/maker 0.9.2 → 0.9.3
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 +6 -0
- package/build/browser/cli/main.js +1 -1
- package/build/cjs/index.cjs +1 -1
- package/build/esm/cli/main.js +1 -1
- package/package.json +3 -3
package/CHANGELOG.md
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.
|
|
29
|
+
const commandLineOpts = await yargs(hideBin(args)).version("0.9.3" ?? "").wrap(Math.min(150, yargs().terminalWidth())).strict().help().options({
|
|
30
30
|
input: {
|
|
31
31
|
alias: "i",
|
|
32
32
|
describe: "Input file",
|
package/build/cjs/index.cjs
CHANGED
|
@@ -507,7 +507,7 @@ function validateInterfaceImplProperty(spt, mappedObjectProp, object) {
|
|
|
507
507
|
// src/cli/main.ts
|
|
508
508
|
var apiNamespaceRegex = /^[a-z0-9-]+(\.[a-z0-9-]+)*\.$/;
|
|
509
509
|
async function main(args = process.argv) {
|
|
510
|
-
const commandLineOpts = await yargs__default.default(helpers.hideBin(args)).version("0.9.
|
|
510
|
+
const commandLineOpts = await yargs__default.default(helpers.hideBin(args)).version("0.9.3").wrap(Math.min(150, yargs__default.default().terminalWidth())).strict().help().options({
|
|
511
511
|
input: {
|
|
512
512
|
alias: "i",
|
|
513
513
|
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.
|
|
29
|
+
const commandLineOpts = await yargs(hideBin(args)).version("0.9.3" ?? "").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.
|
|
3
|
+
"version": "0.9.3",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -32,14 +32,14 @@
|
|
|
32
32
|
"tiny-invariant": "^1.3.3",
|
|
33
33
|
"ts-node": "^10.9.2",
|
|
34
34
|
"yargs": "^17.7.2",
|
|
35
|
-
"@osdk/api": "~2.1.
|
|
35
|
+
"@osdk/api": "~2.1.3"
|
|
36
36
|
},
|
|
37
37
|
"devDependencies": {
|
|
38
38
|
"@osdk/foundry.ontologies": "2.13.0",
|
|
39
39
|
"@types/yargs": "^17.0.32",
|
|
40
40
|
"typescript": "~5.5.4",
|
|
41
41
|
"vitest": "^3.0.5",
|
|
42
|
-
"@osdk/client.unstable": "~2.1.
|
|
42
|
+
"@osdk/client.unstable": "~2.1.3",
|
|
43
43
|
"@osdk/monorepo.api-extractor": "~0.0.0",
|
|
44
44
|
"@osdk/monorepo.tsconfig": "~0.0.0"
|
|
45
45
|
},
|