@osdk/maker 0.9.0-beta.24 → 0.9.0-beta.25
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 +7 -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 +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -27,7 +27,7 @@ import { defineOntology } from "../api/defineOntology.js";
|
|
|
27
27
|
import { defineSharedPropertyType } from "../api/defineSpt.js";
|
|
28
28
|
const apiNamespaceRegex = /^[a-z0-9-]+(\.[a-z0-9-]+)*\.$/;
|
|
29
29
|
export default async function main(args = process.argv) {
|
|
30
|
-
const commandLineOpts = await yargs(hideBin(args)).version("0.9.0-beta.
|
|
30
|
+
const commandLineOpts = await yargs(hideBin(args)).version("0.9.0-beta.25" ?? "").wrap(Math.min(150, yargs().terminalWidth())).strict().help().options({
|
|
31
31
|
input: {
|
|
32
32
|
alias: "i",
|
|
33
33
|
describe: "Input file",
|
package/build/cjs/index.cjs
CHANGED
|
@@ -355,7 +355,7 @@ function mapSimplifiedStatusToInterfaceTypeStatus(status) {
|
|
|
355
355
|
// src/cli/main.ts
|
|
356
356
|
var apiNamespaceRegex = /^[a-z0-9-]+(\.[a-z0-9-]+)*\.$/;
|
|
357
357
|
async function main(args = process.argv) {
|
|
358
|
-
const commandLineOpts = await yargs__default.default(helpers.hideBin(args)).version("0.9.0-beta.
|
|
358
|
+
const commandLineOpts = await yargs__default.default(helpers.hideBin(args)).version("0.9.0-beta.25").wrap(Math.min(150, yargs__default.default().terminalWidth())).strict().help().options({
|
|
359
359
|
input: {
|
|
360
360
|
alias: "i",
|
|
361
361
|
describe: "Input file",
|
package/build/esm/cli/main.js
CHANGED
|
@@ -27,7 +27,7 @@ import { defineOntology } from "../api/defineOntology.js";
|
|
|
27
27
|
import { defineSharedPropertyType } from "../api/defineSpt.js";
|
|
28
28
|
const apiNamespaceRegex = /^[a-z0-9-]+(\.[a-z0-9-]+)*\.$/;
|
|
29
29
|
export default async function main(args = process.argv) {
|
|
30
|
-
const commandLineOpts = await yargs(hideBin(args)).version("0.9.0-beta.
|
|
30
|
+
const commandLineOpts = await yargs(hideBin(args)).version("0.9.0-beta.25" ?? "").wrap(Math.min(150, yargs().terminalWidth())).strict().help().options({
|
|
31
31
|
input: {
|
|
32
32
|
alias: "i",
|
|
33
33
|
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.25",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -32,16 +32,16 @@
|
|
|
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.0-beta.
|
|
35
|
+
"@osdk/api": "~2.1.0-beta.25"
|
|
36
36
|
},
|
|
37
37
|
"devDependencies": {
|
|
38
38
|
"@osdk/internal.foundry.core": "2.9.0",
|
|
39
39
|
"@types/yargs": "^17.0.32",
|
|
40
40
|
"typescript": "~5.5.4",
|
|
41
41
|
"vitest": "^3.0.4",
|
|
42
|
-
"@osdk/
|
|
43
|
-
"@osdk/
|
|
44
|
-
"@osdk/monorepo.
|
|
42
|
+
"@osdk/monorepo.api-extractor": "~0.0.0",
|
|
43
|
+
"@osdk/client.unstable": "~2.1.0-beta.25",
|
|
44
|
+
"@osdk/monorepo.tsconfig": "~0.0.0"
|
|
45
45
|
},
|
|
46
46
|
"publishConfig": {
|
|
47
47
|
"access": "public"
|