@seayoo-web/gamer-api 4.1.0 → 4.1.1
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 +5 -5
- package/types/src/event.enums.d.ts +2 -0
- package/types/src/utils.d.ts +1 -1
package/dist/index.js
CHANGED
|
@@ -550,7 +550,8 @@ var d = "gamer_token", ue = class {
|
|
|
550
550
|
OrderAmountInApp: "order_in_app_total_amount",
|
|
551
551
|
OrderAmountInPayCenter: "order_seayoo_web_total_amount",
|
|
552
552
|
TeamSize: "team_size",
|
|
553
|
-
UserGroup: "user_group"
|
|
553
|
+
UserGroup: "user_group",
|
|
554
|
+
engagementCount: "engagement_count"
|
|
554
555
|
}, E = u.string().enum(Xe).lock(), Ze = {
|
|
555
556
|
System: "system",
|
|
556
557
|
UserSubmission: "user_submission",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@seayoo-web/gamer-api",
|
|
3
|
-
"version": "4.1.
|
|
3
|
+
"version": "4.1.1",
|
|
4
4
|
"description": "agent for gamer api",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "web@seayoo.com",
|
|
@@ -27,15 +27,15 @@
|
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
|
29
29
|
"@types/node": "^22.13.1",
|
|
30
|
-
"@seayoo-web/
|
|
30
|
+
"@seayoo-web/scripts": "4.1.2",
|
|
31
|
+
"@seayoo-web/combo-webview": "2.9.6",
|
|
32
|
+
"@seayoo-web/utils": "4.4.1",
|
|
31
33
|
"@seayoo-web/request": "4.1.0",
|
|
32
|
-
"@seayoo-web/scripts": "4.0.2",
|
|
33
34
|
"@seayoo-web/tsconfig": "1.0.6",
|
|
34
|
-
"@seayoo-web/utils": "4.4.1",
|
|
35
35
|
"@seayoo-web/validator": "2.3.0"
|
|
36
36
|
},
|
|
37
37
|
"peerDependencies": {
|
|
38
|
-
"@seayoo-web/combo-webview": "^2.9.
|
|
38
|
+
"@seayoo-web/combo-webview": "^2.9.6",
|
|
39
39
|
"@seayoo-web/utils": "^4.4.1",
|
|
40
40
|
"@seayoo-web/validator": "^2.3.0"
|
|
41
41
|
},
|
|
@@ -200,6 +200,8 @@ export declare const QuestObjective: {
|
|
|
200
200
|
readonly TeamSize: "team_size";
|
|
201
201
|
/** 玩家分组 */
|
|
202
202
|
readonly UserGroup: "user_group";
|
|
203
|
+
/** 玩法参与次数 */
|
|
204
|
+
readonly engagementCount: "engagement_count";
|
|
203
205
|
};
|
|
204
206
|
export type QuestObjective = ValueOf<typeof QuestObjective>;
|
|
205
207
|
export declare const QuestObjectiveValidator: import("@seayoo-web/validator").StringValidator<QuestObjective, false, false> & {
|
package/types/src/utils.d.ts
CHANGED