@osdk/foundry 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 +50 -0
  2. package/package.json +20 -18
package/CHANGELOG.md CHANGED
@@ -1,5 +1,55 @@
1
1
  # @osdk/foundry
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/foundry.thirdpartyapplications@2.7.0
13
+ - @osdk/foundry.orchestration@2.7.0
14
+ - @osdk/foundry.connectivity@2.7.0
15
+ - @osdk/foundry.filesystem@2.7.0
16
+ - @osdk/foundry.ontologies@2.7.0
17
+ - @osdk/foundry.publicapis@2.7.0
18
+ - @osdk/foundry.aipagents@2.7.0
19
+ - @osdk/foundry.datasets@2.7.0
20
+ - @osdk/foundry.streams@2.7.0
21
+ - @osdk/foundry.admin@2.7.0
22
+ - @osdk/foundry.core@2.7.0
23
+ - @osdk/foundry.geo@2.7.0
24
+ - @osdk/foundry.functions@2.7.0
25
+
26
+ ## 2.6.0
27
+
28
+ ### Minor Changes
29
+
30
+ - bd6d407: Adds a "default" export entry
31
+ - 7e79126: Updates the response type of methods that returned Blob to return Response
32
+
33
+ ### Patch Changes
34
+
35
+ - Updated dependencies [bd6d407]
36
+ - Updated dependencies [7e79126]
37
+ - Updated dependencies [e866c5c]
38
+ - @osdk/foundry.thirdpartyapplications@2.6.0
39
+ - @osdk/shared.net.platformapi@1.2.0
40
+ - @osdk/foundry.orchestration@2.6.0
41
+ - @osdk/foundry.connectivity@2.6.0
42
+ - @osdk/foundry.filesystem@2.6.0
43
+ - @osdk/foundry.ontologies@2.6.0
44
+ - @osdk/foundry.publicapis@2.6.0
45
+ - @osdk/foundry.aipagents@2.6.0
46
+ - @osdk/foundry.functions@2.6.0
47
+ - @osdk/foundry.datasets@2.6.0
48
+ - @osdk/foundry.streams@2.6.0
49
+ - @osdk/foundry.admin@2.6.0
50
+ - @osdk/foundry.core@2.6.0
51
+ - @osdk/foundry.geo@2.6.0
52
+
3
53
  ## 2.6.0-beta.1
4
54
 
5
55
  ### Minor Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@osdk/foundry",
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,30 +9,32 @@
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/foundry.admin": "2.6.0-beta.1",
23
- "@osdk/foundry.aipagents": "2.6.0-beta.1",
24
- "@osdk/foundry.core": "2.6.0-beta.1",
25
- "@osdk/foundry.connectivity": "2.6.0-beta.1",
26
- "@osdk/foundry.datasets": "2.6.0-beta.1",
27
- "@osdk/foundry.geo": "2.6.0-beta.1",
28
- "@osdk/foundry.filesystem": "2.6.0-beta.1",
29
- "@osdk/foundry.functions": "2.6.0-beta.1",
30
- "@osdk/foundry.ontologies": "2.6.0-beta.1",
31
- "@osdk/foundry.orchestration": "2.6.0-beta.1",
32
- "@osdk/foundry.publicapis": "2.6.0-beta.1",
33
- "@osdk/foundry.thirdpartyapplications": "2.6.0-beta.1",
34
- "@osdk/foundry.streams": "2.6.0-beta.1",
35
- "@osdk/shared.net.platformapi": "~1.2.0-beta.1"
24
+ "@osdk/foundry.admin": "2.7.0",
25
+ "@osdk/foundry.aipagents": "2.7.0",
26
+ "@osdk/foundry.connectivity": "2.7.0",
27
+ "@osdk/foundry.core": "2.7.0",
28
+ "@osdk/foundry.filesystem": "2.7.0",
29
+ "@osdk/foundry.functions": "2.7.0",
30
+ "@osdk/foundry.datasets": "2.7.0",
31
+ "@osdk/foundry.geo": "2.7.0",
32
+ "@osdk/foundry.ontologies": "2.7.0",
33
+ "@osdk/foundry.orchestration": "2.7.0",
34
+ "@osdk/foundry.publicapis": "2.7.0",
35
+ "@osdk/foundry.thirdpartyapplications": "2.7.0",
36
+ "@osdk/foundry.streams": "2.7.0",
37
+ "@osdk/shared.net.platformapi": "~1.2.0"
36
38
  },
37
39
  "devDependencies": {
38
40
  "typescript": "^5.5.4",
@@ -55,7 +57,7 @@
55
57
  "sls": {
56
58
  "dependencies": {
57
59
  "com.palantir.foundry.api:api-gateway": {
58
- "minVersion": "1.990.0",
60
+ "minVersion": "1.1010.0",
59
61
  "maxVersion": "1.x.x",
60
62
  "optional": true
61
63
  }