@seayoo-web/gamer-api 4.0.4 → 4.0.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 +2 -1
- package/package.json +4 -4
- package/types/src/event.enums.d.ts +2 -0
package/dist/index.js
CHANGED
|
@@ -603,7 +603,8 @@ var d = "gamer_token", ue = class {
|
|
|
603
603
|
Bilibili: "bilibili",
|
|
604
604
|
Weibo: "weibo",
|
|
605
605
|
Huya: "huya",
|
|
606
|
-
Douyu: "douyu"
|
|
606
|
+
Douyu: "douyu",
|
|
607
|
+
Kuaishou: "kuaishou"
|
|
607
608
|
}, M = u.string().enum(ft).lock(), pt = {
|
|
608
609
|
Submitted: "submitted",
|
|
609
610
|
Accepted: "accepted",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@seayoo-web/gamer-api",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.5",
|
|
4
4
|
"description": "agent for gamer api",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "web@seayoo.com",
|
|
@@ -29,10 +29,10 @@
|
|
|
29
29
|
"@types/node": "^22.13.1",
|
|
30
30
|
"@seayoo-web/scripts": "4.0.0",
|
|
31
31
|
"@seayoo-web/combo-webview": "2.8.1",
|
|
32
|
-
"@seayoo-web/request": "4.0.5",
|
|
33
|
-
"@seayoo-web/validator": "2.3.0",
|
|
34
32
|
"@seayoo-web/utils": "4.4.1",
|
|
35
|
-
"@seayoo-web/
|
|
33
|
+
"@seayoo-web/request": "4.0.5",
|
|
34
|
+
"@seayoo-web/tsconfig": "1.0.6",
|
|
35
|
+
"@seayoo-web/validator": "2.3.0"
|
|
36
36
|
},
|
|
37
37
|
"peerDependencies": {
|
|
38
38
|
"@seayoo-web/combo-webview": "^2.8.1",
|
|
@@ -444,6 +444,8 @@ export declare const UgcSocialMedia: {
|
|
|
444
444
|
readonly Huya: "huya";
|
|
445
445
|
/** 斗鱼 */
|
|
446
446
|
readonly Douyu: "douyu";
|
|
447
|
+
/** 快手 */
|
|
448
|
+
readonly Kuaishou: "kuaishou";
|
|
447
449
|
};
|
|
448
450
|
export type UgcSocialMedia = ValueOf<typeof UgcSocialMedia>;
|
|
449
451
|
export declare const UgcSocialMediaValidator: import("@seayoo-web/validator").StringValidator<UgcSocialMedia, false, false> & {
|