@osdk/foundry 2.1.0-beta.0 → 2.1.0-beta.2

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 +36 -0
  2. package/package.json +13 -12
package/CHANGELOG.md CHANGED
@@ -1,5 +1,41 @@
1
1
  # @osdk/foundry
2
2
 
3
+ ## 2.1.0-beta.2
4
+
5
+ ### Minor Changes
6
+
7
+ - 5d6d5ab: We now generate error types
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies [5d6d5ab]
12
+ - @osdk/foundry.thirdpartyapplications@2.1.0-beta.2
13
+ - @osdk/foundry.orchestration@2.1.0-beta.2
14
+ - @osdk/foundry.filesystem@2.1.0-beta.2
15
+ - @osdk/foundry.publicapis@2.1.0-beta.2
16
+ - @osdk/foundry.datasets@2.1.0-beta.2
17
+ - @osdk/foundry.admin@2.1.0-beta.2
18
+ - @osdk/foundry.core@2.1.0-beta.2
19
+
20
+ ## 2.1.0-beta.1
21
+
22
+ ### Minor Changes
23
+
24
+ - 5d6d5ab: Autofill Content-Length and Content-Type headers in API's that accept Blobs
25
+ - 5d6d5ab: SLS dependencies are optional
26
+
27
+ ### Patch Changes
28
+
29
+ - Updated dependencies [5d6d5ab]
30
+ - Updated dependencies [5d6d5ab]
31
+ - @osdk/foundry.thirdpartyapplications@2.1.0-beta.1
32
+ - @osdk/foundry.orchestration@2.1.0-beta.1
33
+ - @osdk/foundry.filesystem@2.1.0-beta.1
34
+ - @osdk/foundry.publicapis@2.1.0-beta.1
35
+ - @osdk/foundry.datasets@2.1.0-beta.1
36
+ - @osdk/foundry.admin@2.1.0-beta.1
37
+ - @osdk/foundry.core@2.1.0-beta.1
38
+
3
39
  ## 2.1.0-beta.0
4
40
 
5
41
  ### Minor Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@osdk/foundry",
3
- "version": "2.1.0-beta.0",
3
+ "version": "2.1.0-beta.2",
4
4
  "license": "Apache-2.0",
5
5
  "repository": {
6
6
  "type": "git",
@@ -17,21 +17,21 @@
17
17
  }
18
18
  },
19
19
  "dependencies": {
20
- "@osdk/foundry.admin": "2.1.0-beta.0",
21
- "@osdk/foundry.core": "2.1.0-beta.0",
22
- "@osdk/foundry.datasets": "2.1.0-beta.0",
23
- "@osdk/foundry.filesystem": "2.1.0-beta.0",
24
- "@osdk/foundry.orchestration": "2.1.0-beta.0",
25
- "@osdk/foundry.publicapis": "2.1.0-beta.0",
26
- "@osdk/foundry.thirdpartyapplications": "2.1.0-beta.0",
20
+ "@osdk/foundry.admin": "2.1.0-beta.2",
21
+ "@osdk/foundry.core": "2.1.0-beta.2",
22
+ "@osdk/foundry.datasets": "2.1.0-beta.2",
23
+ "@osdk/foundry.filesystem": "2.1.0-beta.2",
24
+ "@osdk/foundry.orchestration": "2.1.0-beta.2",
25
+ "@osdk/foundry.publicapis": "2.1.0-beta.2",
26
+ "@osdk/foundry.thirdpartyapplications": "2.1.0-beta.2",
27
27
  "@osdk/shared.net.platformapi": "~0.2.0",
28
28
  "@osdk/shared.client": "~0.0.0"
29
29
  },
30
30
  "devDependencies": {
31
31
  "typescript": "^5.5.4",
32
32
  "@osdk/monorepo.api-extractor": "~0.0.0",
33
- "@osdk/monorepo.tsup": "~0.0.0",
34
- "@osdk/monorepo.tsconfig": "~0.0.0"
33
+ "@osdk/monorepo.tsconfig": "~0.0.0",
34
+ "@osdk/monorepo.tsup": "~0.0.0"
35
35
  },
36
36
  "publishConfig": {
37
37
  "access": "public"
@@ -51,8 +51,9 @@
51
51
  "sls": {
52
52
  "dependencies": {
53
53
  "com.palantir.foundry.api:api-gateway": {
54
- "minVersion": "1.908.0",
55
- "maxVersion": "1.x.x"
54
+ "minVersion": "1.922.0",
55
+ "maxVersion": "1.x.x",
56
+ "optional": true
56
57
  }
57
58
  }
58
59
  },