@osdk/internal.foundry.ontologies 2.6.0-beta.1 → 2.7.0

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +26 -0
  2. package/package.json +8 -6
package/CHANGELOG.md CHANGED
@@ -1,5 +1,31 @@
1
1
  # @osdk/internal.foundry.ontologies
2
2
 
3
+ ## 2.7.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 5f8048f: Updating platform APIs to include media APIs.
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies [5f8048f]
12
+ - @osdk/internal.foundry.core@2.7.0
13
+
14
+ ## 2.6.0
15
+
16
+ ### Minor Changes
17
+
18
+ - bd6d407: Adds a "default" export entry
19
+ - 7e79126: Updates the response type of methods that returned Blob to return Response
20
+
21
+ ### Patch Changes
22
+
23
+ - Updated dependencies [bd6d407]
24
+ - Updated dependencies [7e79126]
25
+ - Updated dependencies [e866c5c]
26
+ - @osdk/shared.net.platformapi@1.2.0
27
+ - @osdk/internal.foundry.core@2.6.0
28
+
3
29
  ## 2.6.0-beta.1
4
30
 
5
31
  ### Minor Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@osdk/internal.foundry.ontologies",
3
- "version": "2.6.0-beta.1",
3
+ "version": "2.7.0",
4
4
  "license": "Apache-2.0",
5
5
  "repository": {
6
6
  "type": "git",
@@ -9,18 +9,20 @@
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/esm/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/esm/public/*.js"
17
19
  }
18
20
  },
19
21
  "dependencies": {
20
22
  "@osdk/shared.client": "^1.0.1",
21
23
  "@osdk/shared.client2": "^1.0.0",
22
- "@osdk/internal.foundry.core": "2.6.0-beta.1",
23
- "@osdk/shared.net.platformapi": "~1.2.0-beta.1"
24
+ "@osdk/shared.net.platformapi": "~1.2.0",
25
+ "@osdk/internal.foundry.core": "2.7.0"
24
26
  },
25
27
  "devDependencies": {
26
28
  "typescript": "^5.5.4",
@@ -43,7 +45,7 @@
43
45
  "sls": {
44
46
  "dependencies": {
45
47
  "com.palantir.foundry.api:api-gateway": {
46
- "minVersion": "1.990.0",
48
+ "minVersion": "1.1010.0",
47
49
  "maxVersion": "1.x.x",
48
50
  "optional": true
49
51
  }