@osdk/maker 0.9.0-beta.13 → 0.9.0-beta.14

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.14
4
+
5
+ ### Minor Changes
6
+
7
+ - 91cfa3a: Fixing url parsing for client.
8
+ - 6b6c8a1: Updates gateway endpoints and changes fetchContents for attachments to return a response
9
+
10
+ ### Patch Changes
11
+
12
+ - Updated dependencies [0c56d21]
13
+ - Updated dependencies [6b6c8a1]
14
+ - @osdk/api@2.1.0-beta.14
15
+
3
16
  ## 0.9.0-beta.13
4
17
 
5
18
  ### Patch 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.13" ?? "").wrap(Math.min(150, yargs().terminalWidth())).strict().help().options({
29
+ const commandLineOpts = await yargs(hideBin(args)).version("0.9.0-beta.14" ?? "").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.13" ?? "").wrap(Math.min(150, yargs().terminalWidth())).strict().help().options({
29
+ const commandLineOpts = await yargs(hideBin(args)).version("0.9.0-beta.14" ?? "").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.13",
3
+ "version": "0.9.0-beta.14",
4
4
  "license": "Apache-2.0",
5
5
  "repository": {
6
6
  "type": "git",
@@ -24,17 +24,17 @@
24
24
  "tiny-invariant": "^1.3.3",
25
25
  "ts-node": "^10.9.2",
26
26
  "yargs": "^17.7.2",
27
- "@osdk/api": "~2.1.0-beta.13"
27
+ "@osdk/api": "~2.1.0-beta.14"
28
28
  },
29
29
  "devDependencies": {
30
- "@osdk/internal.foundry.core": "2.5.0",
30
+ "@osdk/internal.foundry.core": "2.6.0-beta.1",
31
31
  "@types/yargs": "^17.0.32",
32
32
  "typescript": "~5.5.4",
33
33
  "vitest": "^2.1.2",
34
+ "@osdk/client.unstable": "~2.1.0-beta.14",
34
35
  "@osdk/monorepo.api-extractor": "~0.0.0",
35
- "@osdk/client.unstable": "~2.1.0-beta.13",
36
- "@osdk/monorepo.tsup": "~0.0.0",
37
- "@osdk/monorepo.tsconfig": "~0.0.0"
36
+ "@osdk/monorepo.tsconfig": "~0.0.0",
37
+ "@osdk/monorepo.tsup": "~0.0.0"
38
38
  },
39
39
  "publishConfig": {
40
40
  "access": "public"