@growi/sdk-typescript 1.0.0-RC.3 → 1.0.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.
- package/CHANGELOG.md +8 -1
- package/package.json +29 -14
package/CHANGELOG.md
CHANGED
|
@@ -1,11 +1,18 @@
|
|
|
1
1
|
## [2025-06-02] - SDK Update
|
|
2
2
|
|
|
3
|
+
## 1.0.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#1](https://github.com/growilabs/growi-sdk-typescript/pull/1) [`1bfd9e1`](https://github.com/growilabs/growi-sdk-typescript/commit/1bfd9e15c0087b9276afe430d6f00fa9ad7b9933) Thanks [@yuki-takei](https://github.com/yuki-takei)! - GA Release
|
|
8
|
+
|
|
3
9
|
### OpenAPI Spec Versions
|
|
10
|
+
|
|
4
11
|
- apiv1: 7.2.6-RC.0
|
|
5
12
|
- apiv3: 7.2.6-RC.0
|
|
6
13
|
|
|
7
14
|
### Changes
|
|
15
|
+
|
|
8
16
|
- Reflected the latest version of OpenAPI specifications
|
|
9
17
|
- Regenerated SDK code
|
|
10
18
|
- Code formatting with Biome
|
|
11
|
-
|
package/package.json
CHANGED
|
@@ -1,11 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@growi/sdk-typescript",
|
|
3
|
-
"version": "1.0.0
|
|
3
|
+
"version": "1.0.0",
|
|
4
4
|
"description": "GROWI SDK for TypeScript, providing utilities and types for building applications that interact with GROWI.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"author": "Yuki Takei <yuki@weseek.co.jp>",
|
|
8
|
-
"keywords": [
|
|
8
|
+
"keywords": [
|
|
9
|
+
"sdk",
|
|
10
|
+
"growi",
|
|
11
|
+
"typescript",
|
|
12
|
+
"api"
|
|
13
|
+
],
|
|
9
14
|
"main": "dist/index.js",
|
|
10
15
|
"types": "dist/index.d.ts",
|
|
11
16
|
"exports": {
|
|
@@ -22,7 +27,14 @@
|
|
|
22
27
|
"import": "./dist/apiv3/index.js"
|
|
23
28
|
}
|
|
24
29
|
},
|
|
25
|
-
"files": [
|
|
30
|
+
"files": [
|
|
31
|
+
"dist",
|
|
32
|
+
"src",
|
|
33
|
+
"README.md",
|
|
34
|
+
"README_JP.md",
|
|
35
|
+
"CHANGELOG.md",
|
|
36
|
+
"LICENSE"
|
|
37
|
+
],
|
|
26
38
|
"repository": {
|
|
27
39
|
"type": "git",
|
|
28
40
|
"url": "https://github.com/growilabs/growi-sdk-typescript.git"
|
|
@@ -31,6 +43,16 @@
|
|
|
31
43
|
"engines": {
|
|
32
44
|
"node": ">=18.0.0"
|
|
33
45
|
},
|
|
46
|
+
"dependencies": {
|
|
47
|
+
"axios": "^1.9.0"
|
|
48
|
+
},
|
|
49
|
+
"devDependencies": {
|
|
50
|
+
"@biomejs/biome": "^1.9.4",
|
|
51
|
+
"@changesets/changelog-github": "^0.5.1",
|
|
52
|
+
"@changesets/cli": "^2.29.4",
|
|
53
|
+
"@types/node": "^22.15.29",
|
|
54
|
+
"orval": "^7.9.0"
|
|
55
|
+
},
|
|
34
56
|
"scripts": {
|
|
35
57
|
"build": "tsc -p tsconfig.build.json",
|
|
36
58
|
"prebuild": "pnpm clean",
|
|
@@ -39,15 +61,8 @@
|
|
|
39
61
|
"generate:api": "orval --biome",
|
|
40
62
|
"postgenerate:api": "pnpm nodets ./scripts/fix-esm-imports.ts",
|
|
41
63
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
64
|
+
"release-sdk:version": "pnpm changeset version && pnpm biome format --fix package.json",
|
|
65
|
+
"release-sdk:publish": "pnpm build && pnpm changeset publish",
|
|
42
66
|
"nodets": "node --experimental-strip-types --experimental-transform-types --no-warnings=ExperimentalWarning"
|
|
43
|
-
}
|
|
44
|
-
|
|
45
|
-
"axios": "^1.9.0"
|
|
46
|
-
},
|
|
47
|
-
"devDependencies": {
|
|
48
|
-
"@biomejs/biome": "^1.9.4",
|
|
49
|
-
"@types/node": "^22.15.29",
|
|
50
|
-
"orval": "^7.9.0"
|
|
51
|
-
},
|
|
52
|
-
"packageManager": "pnpm@10.11.0"
|
|
53
|
-
}
|
|
67
|
+
}
|
|
68
|
+
}
|