@osdk/maker-experimental 0.6.0-beta.3 → 0.6.0-beta.4
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 +13 -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 +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# @osdk/maker-experimental
|
|
2
2
|
|
|
3
|
+
## 0.6.0-beta.4
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 35f2f1a: Add Media inputs/outputs for Queries
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies [35f2f1a]
|
|
12
|
+
- @osdk/api@2.8.0-beta.14
|
|
13
|
+
- @osdk/client.unstable@2.8.0-beta.14
|
|
14
|
+
- @osdk/maker@0.16.0-beta.8
|
|
15
|
+
|
|
3
16
|
## 0.6.0-beta.3
|
|
4
17
|
|
|
5
18
|
### Minor Changes
|
|
@@ -26,7 +26,7 @@ const apiNamespaceRegex = /^[a-z0-9-]+(\.[a-z0-9-]+)*\.$/;
|
|
|
26
26
|
const uuidRegex = /^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/;
|
|
27
27
|
export default async function main(args = process.argv) {
|
|
28
28
|
consola.log("Generating BlockGeneratorResult for ontology...");
|
|
29
|
-
const commandLineOpts = await yargs(hideBin(args)).version("0.6.0-beta.
|
|
29
|
+
const commandLineOpts = await yargs(hideBin(args)).version("0.6.0-beta.4" ?? "").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
|
@@ -4052,7 +4052,7 @@ var apiNamespaceRegex = /^[a-z0-9-]+(\.[a-z0-9-]+)*\.$/;
|
|
|
4052
4052
|
var uuidRegex = /^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/;
|
|
4053
4053
|
async function main(args = process.argv) {
|
|
4054
4054
|
consola.consola.log("Generating BlockGeneratorResult for ontology...");
|
|
4055
|
-
const commandLineOpts = await yargs__default.default(helpers.hideBin(args)).version("0.6.0-beta.
|
|
4055
|
+
const commandLineOpts = await yargs__default.default(helpers.hideBin(args)).version("0.6.0-beta.4").wrap(Math.min(150, yargs__default.default().terminalWidth())).strict().help().options({
|
|
4056
4056
|
input: {
|
|
4057
4057
|
alias: "i",
|
|
4058
4058
|
describe: "Input file",
|
package/build/esm/cli/main.js
CHANGED
|
@@ -26,7 +26,7 @@ const apiNamespaceRegex = /^[a-z0-9-]+(\.[a-z0-9-]+)*\.$/;
|
|
|
26
26
|
const uuidRegex = /^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/;
|
|
27
27
|
export default async function main(args = process.argv) {
|
|
28
28
|
consola.log("Generating BlockGeneratorResult for ontology...");
|
|
29
|
-
const commandLineOpts = await yargs(hideBin(args)).version("0.6.0-beta.
|
|
29
|
+
const commandLineOpts = await yargs(hideBin(args)).version("0.6.0-beta.4" ?? "").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-experimental",
|
|
3
|
-
"version": "0.6.0-beta.
|
|
3
|
+
"version": "0.6.0-beta.4",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -31,9 +31,9 @@
|
|
|
31
31
|
"jiti": "^2.5.1",
|
|
32
32
|
"tiny-invariant": "^1.3.3",
|
|
33
33
|
"yargs": "^17.7.2",
|
|
34
|
-
"@osdk/api": "~2.8.0-beta.
|
|
35
|
-
"@osdk/
|
|
36
|
-
"@osdk/
|
|
34
|
+
"@osdk/api": "~2.8.0-beta.14",
|
|
35
|
+
"@osdk/maker": "~0.16.0-beta.8",
|
|
36
|
+
"@osdk/client.unstable": "~2.8.0-beta.14"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
39
|
"@types/node": "^20.19.13",
|