@osdk/internal.foundry.datasets 0.1.0-beta.1 → 0.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 +15 -0
  2. package/package.json +13 -9
package/CHANGELOG.md CHANGED
@@ -1,5 +1,20 @@
1
1
  # @osdk/internal.foundry.datasets
2
2
 
3
+ ## 0.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 [3ec7c38]
12
+ - Updated dependencies [bc89b62]
13
+ - @osdk/api@1.9.0-beta.1
14
+ - @osdk/shared.net.platformapi@0.2.0-beta.2
15
+ - @osdk/internal.foundry.core@0.1.0-beta.2
16
+ - @osdk/shared.net@1.12.0-beta.1
17
+
3
18
  ## 0.1.0-beta.1
4
19
 
5
20
  ### Minor Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@osdk/internal.foundry.datasets",
3
- "version": "0.1.0-beta.1",
3
+ "version": "0.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/api": "~1.9.0-beta.0",
20
+ "@osdk/api": "~1.9.0-beta.1",
21
+ "@osdk/internal.foundry.core": "0.1.0-beta.2",
22
+ "@osdk/shared.net": "~1.12.0-beta.1",
21
23
  "@osdk/shared.client": "~0.0.0",
22
- "@osdk/internal.foundry.core": "0.1.0-beta.1",
23
- "@osdk/shared.net": "~1.12.0-beta.0",
24
- "@osdk/shared.net.platformapi": "~0.2.0-beta.1"
24
+ "@osdk/shared.net.platformapi": "~0.2.0-beta.2"
25
25
  },
26
26
  "devDependencies": {
27
- "typescript": "^5.5.2"
27
+ "typescript": "^5.5.2",
28
+ "@osdk/monorepo.api-extractor": "~0.0.0",
29
+ "@osdk/monorepo.tsconfig": "~0.0.0",
30
+ "@osdk/monorepo.tsup": "~0.0.0"
28
31
  },
29
32
  "publishConfig": {
30
33
  "access": "public"
@@ -51,11 +54,12 @@
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
  }