@seayoo-web/gamer-api 2.14.4 → 2.14.5

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/dist/index.js CHANGED
@@ -1308,6 +1308,7 @@ const v = {
1308
1308
  feature_id: e.number().optional(),
1309
1309
  feature_name: e.string().optional(),
1310
1310
  review_status: vt,
1311
+ reviewer_comment: e.string().optional(),
1311
1312
  title: e.string(),
1312
1313
  content: e.string().optional(),
1313
1314
  image_urls: e.array(e.string()).optional(),
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@seayoo-web/gamer-api",
3
3
  "description": "agent for gamer api",
4
- "version": "2.14.4",
4
+ "version": "2.14.5",
5
5
  "type": "module",
6
6
  "source": "index.ts",
7
7
  "main": "./dist/index.js",
@@ -31,8 +31,8 @@
31
31
  "devDependencies": {
32
32
  "@types/node": "^22.13.1",
33
33
  "@seayoo-web/combo-webview": "2.8.0",
34
- "@seayoo-web/request": "3.4.2",
35
34
  "@seayoo-web/scripts": "3.1.6",
35
+ "@seayoo-web/request": "3.4.2",
36
36
  "@seayoo-web/tsconfig": "1.0.5",
37
37
  "@seayoo-web/utils": "4.1.3",
38
38
  "@seayoo-web/validator": "2.0.0"
@@ -38,6 +38,8 @@ export interface UgcRecord {
38
38
  feature_name?: string;
39
39
  /** 状态 */
40
40
  review_status: UgcReviewStatus;
41
+ /** 审核备注 */
42
+ reviewer_comment?: string;
41
43
  /** 标题 */
42
44
  title: string;
43
45
  /** 描述 */