@osdk/maker 0.9.0-beta.0 → 0.9.0-beta.2
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 +20 -0
- package/build/browser/cli/main.js +1 -1
- package/build/esm/cli/main.js +1 -1
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
# @osdk/maker
|
|
2
2
|
|
|
3
|
+
## 0.9.0-beta.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- @osdk/api@2.1.0-beta.2
|
|
8
|
+
|
|
9
|
+
## 0.9.0-beta.1
|
|
10
|
+
|
|
11
|
+
### Minor Changes
|
|
12
|
+
|
|
13
|
+
- 1812118: Add geotime support for OSDK.
|
|
14
|
+
|
|
15
|
+
### Patch Changes
|
|
16
|
+
|
|
17
|
+
- Updated dependencies [1812118]
|
|
18
|
+
- Updated dependencies [72c1905]
|
|
19
|
+
- Updated dependencies [6c60414]
|
|
20
|
+
- Updated dependencies [8e6a5f4]
|
|
21
|
+
- @osdk/api@2.1.0-beta.1
|
|
22
|
+
|
|
3
23
|
## 0.9.0-beta.0
|
|
4
24
|
|
|
5
25
|
### 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.2" ?? "").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.2" ?? "").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.2",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -22,16 +22,16 @@
|
|
|
22
22
|
"tiny-invariant": "^1.3.3",
|
|
23
23
|
"ts-node": "^10.9.2",
|
|
24
24
|
"yargs": "^17.7.2",
|
|
25
|
-
"@osdk/api": "~2.1.0-beta.
|
|
25
|
+
"@osdk/api": "~2.1.0-beta.2"
|
|
26
26
|
},
|
|
27
27
|
"devDependencies": {
|
|
28
|
+
"@osdk/internal.foundry.core": "0.3.0-beta.0",
|
|
28
29
|
"@types/yargs": "^17.0.32",
|
|
29
30
|
"typescript": "^5.5.4",
|
|
30
|
-
"vitest": "^2.
|
|
31
|
-
"@osdk/client.unstable": "~2.1.0-beta.
|
|
32
|
-
"@osdk/internal.foundry.core": "~0.2.0",
|
|
33
|
-
"@osdk/monorepo.api-extractor": "~0.0.0",
|
|
31
|
+
"vitest": "^2.1.2",
|
|
32
|
+
"@osdk/client.unstable": "~2.1.0-beta.2",
|
|
34
33
|
"@osdk/monorepo.tsconfig": "~0.0.0",
|
|
34
|
+
"@osdk/monorepo.api-extractor": "~0.0.0",
|
|
35
35
|
"@osdk/monorepo.tsup": "~0.0.0"
|
|
36
36
|
},
|
|
37
37
|
"publishConfig": {
|