@osdk/maker 0.9.0-beta.5 → 0.9.0-beta.6

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 CHANGED
@@ -1,5 +1,18 @@
1
1
  # @osdk/maker
2
2
 
3
+ ## 0.9.0-beta.6
4
+
5
+ ### Minor Changes
6
+
7
+ - 25fd9f0: Updating package.json to have better entry points to support react native bundlers.
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies [25fd9f0]
12
+ - Updated dependencies [1a89f23]
13
+ - Updated dependencies [1b2e8c9]
14
+ - @osdk/api@2.1.0-beta.6
15
+
3
16
  ## 0.9.0-beta.5
4
17
 
5
18
  ### 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.5" ?? "").wrap(Math.min(150, yargs().terminalWidth())).strict().help().options({
29
+ const commandLineOpts = await yargs(hideBin(args)).version("0.9.0-beta.6" ?? "").wrap(Math.min(150, yargs().terminalWidth())).strict().help().options({
30
30
  input: {
31
31
  alias: "i",
32
32
  describe: "Input file",
@@ -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.5" ?? "").wrap(Math.min(150, yargs().terminalWidth())).strict().help().options({
29
+ const commandLineOpts = await yargs(hideBin(args)).version("0.9.0-beta.6" ?? "").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.5",
3
+ "version": "0.9.0-beta.6",
4
4
  "license": "Apache-2.0",
5
5
  "repository": {
6
6
  "type": "git",
@@ -9,11 +9,13 @@
9
9
  "exports": {
10
10
  ".": {
11
11
  "browser": "./build/browser/index.js",
12
- "import": "./build/esm/index.js"
12
+ "import": "./build/esm/index.js",
13
+ "default": "./build/browser/index.js"
13
14
  },
14
15
  "./*": {
15
16
  "browser": "./build/browser/public/*.js",
16
- "import": "./build/esm/public/*.js"
17
+ "import": "./build/esm/public/*.js",
18
+ "default": "./build/browser/public/*.js"
17
19
  }
18
20
  },
19
21
  "dependencies": {
@@ -22,16 +24,16 @@
22
24
  "tiny-invariant": "^1.3.3",
23
25
  "ts-node": "^10.9.2",
24
26
  "yargs": "^17.7.2",
25
- "@osdk/api": "~2.1.0-beta.5"
27
+ "@osdk/api": "~2.1.0-beta.6"
26
28
  },
27
29
  "devDependencies": {
28
30
  "@osdk/internal.foundry.core": "2.2.0",
29
31
  "@types/yargs": "^17.0.32",
30
32
  "typescript": "~5.5.4",
31
33
  "vitest": "^2.1.2",
34
+ "@osdk/client.unstable": "~2.1.0-beta.6",
32
35
  "@osdk/monorepo.api-extractor": "~0.0.0",
33
36
  "@osdk/monorepo.tsconfig": "~0.0.0",
34
- "@osdk/client.unstable": "~2.1.0-beta.5",
35
37
  "@osdk/monorepo.tsup": "~0.0.0"
36
38
  },
37
39
  "publishConfig": {