@seayoo-web/gamer-api 2.14.2 → 2.14.3
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/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
|
+
"version": "2.14.3",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"source": "index.ts",
|
|
7
7
|
"main": "./dist/index.js",
|
|
@@ -30,17 +30,17 @@
|
|
|
30
30
|
"license": "MIT",
|
|
31
31
|
"devDependencies": {
|
|
32
32
|
"@types/node": "^22.13.1",
|
|
33
|
-
"@seayoo-web/request": "3.4.2",
|
|
34
33
|
"@seayoo-web/combo-webview": "2.8.0",
|
|
35
|
-
"@seayoo-web/
|
|
34
|
+
"@seayoo-web/request": "3.4.2",
|
|
36
35
|
"@seayoo-web/scripts": "3.1.6",
|
|
37
36
|
"@seayoo-web/utils": "4.1.3",
|
|
37
|
+
"@seayoo-web/tsconfig": "1.0.5",
|
|
38
38
|
"@seayoo-web/validator": "2.0.0"
|
|
39
39
|
},
|
|
40
40
|
"peerDependencies": {
|
|
41
41
|
"@seayoo-web/combo-webview": "^2.8.0",
|
|
42
|
-
"@seayoo-web/
|
|
43
|
-
"@seayoo-web/
|
|
42
|
+
"@seayoo-web/validator": "^2.0.0",
|
|
43
|
+
"@seayoo-web/utils": "^4.1.3"
|
|
44
44
|
},
|
|
45
45
|
"scripts": {
|
|
46
46
|
"prebuild": "pnpm -F validator build && pnpm -F request build && pnpm -F combo-webview build",
|
|
@@ -136,7 +136,7 @@ export type ClubUserProfile = {
|
|
|
136
136
|
/** 社交媒体信息 */
|
|
137
137
|
social_medias?: Record<string, Homepage | undefined>;
|
|
138
138
|
};
|
|
139
|
-
interface Homepage {
|
|
139
|
+
export interface Homepage {
|
|
140
140
|
/** 主页链接 */
|
|
141
141
|
homepage_url: string;
|
|
142
142
|
/** 主页截图链接 */
|
|
@@ -393,4 +393,3 @@ export type Redemption = {
|
|
|
393
393
|
extra_data?: ExtraPhysicalShipment | ExtraGameReward;
|
|
394
394
|
};
|
|
395
395
|
export declare const RedemptionValidator: import("@seayoo-web/validator").ObjectValidator<Redemption, false, false>;
|
|
396
|
-
export {};
|