@osdk/foundry.geo 2.6.0-beta.0 → 2.6.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 +25 -0
  2. package/package.json +7 -5
package/CHANGELOG.md CHANGED
@@ -1,5 +1,30 @@
1
1
  # @osdk/foundry.geo
2
2
 
3
+ ## 2.6.0
4
+
5
+ ### Minor Changes
6
+
7
+ - bd6d407: Adds a "default" export entry
8
+ - 7e79126: Updates the response type of methods that returned Blob to return Response
9
+
10
+ ### Patch Changes
11
+
12
+ - Updated dependencies [bd6d407]
13
+ - Updated dependencies [7e79126]
14
+ - Updated dependencies [e866c5c]
15
+ - @osdk/shared.net.platformapi@1.2.0
16
+
17
+ ## 2.6.0-beta.1
18
+
19
+ ### Minor Changes
20
+
21
+ - 7e79126: Updates the response type of methods that returned Blob to return Response
22
+
23
+ ### Patch Changes
24
+
25
+ - Updated dependencies [7e79126]
26
+ - @osdk/shared.net.platformapi@1.2.0-beta.1
27
+
3
28
  ## 2.6.0-beta.0
4
29
 
5
30
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@osdk/foundry.geo",
3
- "version": "2.6.0-beta.0",
3
+ "version": "2.6.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.0"
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.986.0",
47
+ "minVersion": "1.990.0",
46
48
  "maxVersion": "1.x.x",
47
49
  "optional": true
48
50
  }