@osdk/foundry 1.1.0-beta.0 → 1.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 +30 -0
  2. package/package.json +15 -11
package/CHANGELOG.md CHANGED
@@ -1,5 +1,35 @@
1
1
  # @osdk/foundry
2
2
 
3
+ ## 1.1.0-beta.2
4
+
5
+ ### Minor Changes
6
+
7
+ - bc89b62: Spelling fixes and spell check in CI
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies [bc89b62]
12
+ - @osdk/foundry.thirdpartyapplications@1.1.0-beta.2
13
+ - @osdk/shared.net.platformapi@0.2.0-beta.2
14
+ - @osdk/foundry.security@1.1.0-beta.2
15
+ - @osdk/foundry.core@1.1.0-beta.2
16
+
17
+ ## 1.1.0-beta.1
18
+
19
+ ### Minor Changes
20
+
21
+ - 388dba9: Change all internal dependencies to be tilde not caret
22
+ - a8dc51a: Modified codegen so that return types now include Blobs.
23
+
24
+ ### Patch Changes
25
+
26
+ - Updated dependencies [388dba9]
27
+ - Updated dependencies [a8dc51a]
28
+ - @osdk/foundry.thirdpartyapplications@1.1.0-beta.1
29
+ - @osdk/shared.net.platformapi@0.2.0-beta.1
30
+ - @osdk/foundry.security@1.1.0-beta.1
31
+ - @osdk/foundry.core@1.1.0-beta.1
32
+
3
33
  ## 1.1.0-beta.0
4
34
 
5
35
  ### Minor Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@osdk/foundry",
3
- "version": "1.1.0-beta.0",
3
+ "version": "1.1.0-beta.2",
4
4
  "license": "Apache-2.0",
5
5
  "repository": {
6
6
  "type": "git",
@@ -17,14 +17,17 @@
17
17
  }
18
18
  },
19
19
  "dependencies": {
20
- "@osdk/foundry.core": "1.1.0-beta.0",
21
- "@osdk/foundry.thirdpartyapplications": "1.1.0-beta.0",
22
- "@osdk/shared.net.platformapi": "^0.2.0-beta.0",
23
- "@osdk/shared.client": "^0.0.0",
24
- "@osdk/foundry.security": "1.1.0-beta.0"
20
+ "@osdk/foundry.core": "1.1.0-beta.2",
21
+ "@osdk/foundry.security": "1.1.0-beta.2",
22
+ "@osdk/foundry.thirdpartyapplications": "1.1.0-beta.2",
23
+ "@osdk/shared.client": "~0.0.0",
24
+ "@osdk/shared.net.platformapi": "~0.2.0-beta.2"
25
25
  },
26
26
  "devDependencies": {
27
- "typescript": "^5.4.5"
27
+ "typescript": "^5.5.2",
28
+ "@osdk/monorepo.api-extractor": "~0.0.0",
29
+ "@osdk/monorepo.tsup": "~0.0.0",
30
+ "@osdk/monorepo.tsconfig": "~0.0.0"
28
31
  },
29
32
  "publishConfig": {
30
33
  "access": "public"
@@ -44,18 +47,19 @@
44
47
  "sls": {
45
48
  "dependencies": {
46
49
  "com.palantir.foundry.api:api-gateway": {
47
- "minVersion": "1.845.0",
50
+ "minVersion": "1.866.0",
48
51
  "maxVersion": "1.x.x"
49
52
  }
50
53
  }
51
54
  },
52
55
  "type": "module",
53
56
  "scripts": {
54
- "check-attw": "../../scripts/build_common/check-attw.sh esm",
57
+ "check-attw": "monorepo.tool.attw esm",
58
+ "check-spelling": "cspell --quiet .",
55
59
  "clean": "rm -rf lib dist types build tsconfig.tsbuildinfo",
56
60
  "fix-lint": "eslint . --fix && dprint fmt --config $(find-up dprint.json)",
57
61
  "lint": "eslint . && dprint check --config $(find-up dprint.json)",
58
- "transpile": "tsup",
59
- "typecheck": "../../scripts/build_common/typecheck.sh esm"
62
+ "transpile": "monorepo.tool.transpile",
63
+ "typecheck": "monorepo.tool.typecheck esm"
60
64
  }
61
65
  }