@osdk/foundry 1.1.0-beta.1 → 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.
- package/CHANGELOG.md +14 -0
- package/package.json +13 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
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
|
+
|
|
3
17
|
## 1.1.0-beta.1
|
|
4
18
|
|
|
5
19
|
### Minor Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@osdk/foundry",
|
|
3
|
-
"version": "1.1.0-beta.
|
|
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.
|
|
21
|
-
"@osdk/foundry.security": "1.1.0-beta.
|
|
22
|
-
"@osdk/foundry.thirdpartyapplications": "1.1.0-beta.
|
|
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
23
|
"@osdk/shared.client": "~0.0.0",
|
|
24
|
-
"@osdk/shared.net.platformapi": "~0.2.0-beta.
|
|
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.tsup": "~0.0.0",
|
|
30
|
+
"@osdk/monorepo.tsconfig": "~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": "
|
|
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": "
|
|
59
|
-
"typecheck": "
|
|
62
|
+
"transpile": "monorepo.tool.transpile",
|
|
63
|
+
"typecheck": "monorepo.tool.typecheck esm"
|
|
60
64
|
}
|
|
61
65
|
}
|