@osdk/foundry.geo 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 +20 -0
  2. package/package.json +7 -5
package/CHANGELOG.md CHANGED
@@ -1,5 +1,25 @@
1
1
  # @osdk/foundry.geo
2
2
 
3
+ ## 2.7.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 5f8048f: Updating platform APIs to include media APIs.
8
+
9
+ ## 2.6.0
10
+
11
+ ### Minor Changes
12
+
13
+ - bd6d407: Adds a "default" export entry
14
+ - 7e79126: Updates the response type of methods that returned Blob to return Response
15
+
16
+ ### Patch Changes
17
+
18
+ - Updated dependencies [bd6d407]
19
+ - Updated dependencies [7e79126]
20
+ - Updated dependencies [e866c5c]
21
+ - @osdk/shared.net.platformapi@1.2.0
22
+
3
23
  ## 2.6.0-beta.1
4
24
 
5
25
  ### Minor Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@osdk/foundry.geo",
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,17 +9,19 @@
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/shared.net.platformapi": "~1.2.0-beta.1"
24
+ "@osdk/shared.net.platformapi": "~1.2.0"
23
25
  },
24
26
  "devDependencies": {
25
27
  "typescript": "^5.5.4",
@@ -42,7 +44,7 @@
42
44
  "sls": {
43
45
  "dependencies": {
44
46
  "com.palantir.foundry.api:api-gateway": {
45
- "minVersion": "1.990.0",
47
+ "minVersion": "1.1010.0",
46
48
  "maxVersion": "1.x.x",
47
49
  "optional": true
48
50
  }