@seayoo-web/gamer-api 2.11.2 → 2.12.2
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 +575 -462
- package/package.json +4 -4
- package/types/src/event.config/feature.d.ts +4 -2
- package/types/src/event.config/feature.lottery.d.ts +1 -1
- package/types/src/event.config/feature.ugc.d.ts +15 -0
- package/types/src/event.config/reward.d.ts +1 -1
- package/types/src/event.d.ts +39 -0
- package/types/src/event.engage/engage.d.ts +4 -2
- package/types/src/event.engage/engage.ugc.d.ts +75 -0
- package/types/src/event.engage/index.d.ts +3 -3
- package/types/src/event.enums.d.ts +50 -0
- package/types/src/event.guards.d.ts +6 -0
package/dist/index.js
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
|
-
import { isComboWebView as
|
|
2
|
-
import { isPlainObject as k, supportWx as b, useConsole as
|
|
1
|
+
import { isComboWebView as me } from "@seayoo-web/combo-webview";
|
|
2
|
+
import { isPlainObject as k, supportWx as b, useConsole as de, usePromise as ge, pruneURL as pe, supportWindow as _e, queryString as L, pruneObject as c, omitFields as P, parseJSON as be, removePara as G } from "@seayoo-web/utils";
|
|
3
3
|
import { v as e, objectGuard as s } from "@seayoo-web/validator";
|
|
4
|
-
function
|
|
4
|
+
function ye(i) {
|
|
5
5
|
return k(i, "gamer_token") && typeof i.gamer_token == "string";
|
|
6
6
|
}
|
|
7
7
|
function O(i) {
|
|
8
8
|
return k(i);
|
|
9
9
|
}
|
|
10
|
-
const j =
|
|
11
|
-
function
|
|
10
|
+
const j = de("GamerApiSDK");
|
|
11
|
+
function he(i) {
|
|
12
12
|
return /^\/[a-z\d-]+$/.test(i);
|
|
13
13
|
}
|
|
14
|
-
async function
|
|
15
|
-
const { promise: i, resolve: t } =
|
|
14
|
+
async function fe() {
|
|
15
|
+
const { promise: i, resolve: t } = ge();
|
|
16
16
|
return wx.login({
|
|
17
17
|
success(n) {
|
|
18
18
|
t(n.code);
|
|
@@ -22,7 +22,7 @@ async function he() {
|
|
|
22
22
|
}
|
|
23
23
|
}), await i;
|
|
24
24
|
}
|
|
25
|
-
const
|
|
25
|
+
const we = {
|
|
26
26
|
get(i) {
|
|
27
27
|
return localStorage.getItem(i) || "";
|
|
28
28
|
},
|
|
@@ -32,7 +32,7 @@ const fe = {
|
|
|
32
32
|
remove(i) {
|
|
33
33
|
localStorage.removeItem(i);
|
|
34
34
|
}
|
|
35
|
-
},
|
|
35
|
+
}, ke = {
|
|
36
36
|
get(i) {
|
|
37
37
|
try {
|
|
38
38
|
if (b()) return wx.getStorageSync(i) || "";
|
|
@@ -56,7 +56,7 @@ const fe = {
|
|
|
56
56
|
}
|
|
57
57
|
}
|
|
58
58
|
}, h = "gamer_token";
|
|
59
|
-
class
|
|
59
|
+
class ta {
|
|
60
60
|
$NetRequest;
|
|
61
61
|
$idToken = "";
|
|
62
62
|
$weixinToken = "";
|
|
@@ -64,8 +64,8 @@ class Br {
|
|
|
64
64
|
req;
|
|
65
65
|
storage;
|
|
66
66
|
constructor(t, n) {
|
|
67
|
-
this.storage = b() ?
|
|
68
|
-
const r =
|
|
67
|
+
this.storage = b() ? ke : we;
|
|
68
|
+
const r = he(t) ? t : `https://${pe(t)}`;
|
|
69
69
|
if (this.$NetRequest = n, this.req = n({
|
|
70
70
|
baseURL: `${r}/v1`,
|
|
71
71
|
timeout: 1e4,
|
|
@@ -86,9 +86,9 @@ class Br {
|
|
|
86
86
|
requestTransformer: (a) => {
|
|
87
87
|
this.$gamerToken && (a.headers.Authorization = `Bearer ${this.$gamerToken}`);
|
|
88
88
|
}
|
|
89
|
-
}),
|
|
89
|
+
}), _e()) {
|
|
90
90
|
const a = /^(?:localhost|[\d.]+):\d{4}$/.test(location.host), o = L("gamer_token");
|
|
91
|
-
(
|
|
91
|
+
(me() || a && o) && (this.$gamerToken = o);
|
|
92
92
|
}
|
|
93
93
|
this.$gamerToken || this.loadGamerTokenCache();
|
|
94
94
|
}
|
|
@@ -171,7 +171,7 @@ class Br {
|
|
|
171
171
|
const { code: n, data: r } = await this.req.post(
|
|
172
172
|
"login-with-token",
|
|
173
173
|
c({ id_token: this.idToken, weixin_token: t ? this.weixinToken : null }),
|
|
174
|
-
|
|
174
|
+
ye,
|
|
175
175
|
{
|
|
176
176
|
message: !1,
|
|
177
177
|
cacheTTL: 300,
|
|
@@ -213,21 +213,21 @@ class Br {
|
|
|
213
213
|
return n;
|
|
214
214
|
}
|
|
215
215
|
}
|
|
216
|
-
const
|
|
216
|
+
const ve = {
|
|
217
217
|
/** 未知 */
|
|
218
218
|
Unknown: "unknown",
|
|
219
219
|
/** 男 */
|
|
220
220
|
Male: "male",
|
|
221
221
|
/** 女 */
|
|
222
222
|
Female: "female"
|
|
223
|
-
},
|
|
223
|
+
}, Ve = e.string().enum(ve).lock(), Ce = {
|
|
224
224
|
/** 积分增加 */
|
|
225
225
|
Increase: "increase",
|
|
226
226
|
/** 积分减少 */
|
|
227
227
|
Decrease: "decrease",
|
|
228
228
|
/** 积分过期 */
|
|
229
229
|
Expired: "expired"
|
|
230
|
-
},
|
|
230
|
+
}, Re = e.string().enum(Ce).lock(), je = {
|
|
231
231
|
/** 游戏内购买 */
|
|
232
232
|
Order: "order",
|
|
233
233
|
/** 游戏内消耗 */
|
|
@@ -240,21 +240,21 @@ const ke = {
|
|
|
240
240
|
Admin: "admin",
|
|
241
241
|
/** 运营活动 */
|
|
242
242
|
Event: "event"
|
|
243
|
-
},
|
|
243
|
+
}, Te = e.string().enum(je).lock(), qe = {
|
|
244
244
|
/** 游戏内奖励 */
|
|
245
245
|
GameReward: "game_reward",
|
|
246
246
|
/** 实物商品 */
|
|
247
247
|
Physical: "physical",
|
|
248
248
|
/** 虚拟商品 */
|
|
249
249
|
Virtual: "virtual"
|
|
250
|
-
}, H = e.string().enum(
|
|
250
|
+
}, H = e.string().enum(qe).lock(), xe = {
|
|
251
251
|
/** 待发放 */
|
|
252
252
|
Pending: "pending",
|
|
253
253
|
/** 已发放 */
|
|
254
254
|
Issued: "issued",
|
|
255
255
|
/** 发放失败 */
|
|
256
256
|
Failed: "failed"
|
|
257
|
-
},
|
|
257
|
+
}, Se = e.string().enum(xe).lock(), Le = e.object({
|
|
258
258
|
default_avatar_url: e.string(),
|
|
259
259
|
official_avatar_urls: e.array(e.string()),
|
|
260
260
|
default_nickname: e.string(),
|
|
@@ -272,7 +272,7 @@ const ke = {
|
|
|
272
272
|
exp_description: e.string(),
|
|
273
273
|
credit_description: e.string(),
|
|
274
274
|
send_role_mail_rate_limit: e.number()
|
|
275
|
-
}).lock(),
|
|
275
|
+
}).lock(), Pe = e.object({
|
|
276
276
|
member_id: e.string(),
|
|
277
277
|
player_id: e.string(),
|
|
278
278
|
exp: e.number(),
|
|
@@ -281,18 +281,18 @@ const ke = {
|
|
|
281
281
|
credit_expiring: e.number(),
|
|
282
282
|
level_change_time: e.number(),
|
|
283
283
|
level_expire_time: e.number()
|
|
284
|
-
}).lock(),
|
|
284
|
+
}).lock(), Ee = e.object({
|
|
285
285
|
server_id: e.string(),
|
|
286
286
|
server_name: e.string()
|
|
287
|
-
}).lock(),
|
|
287
|
+
}).lock(), $e = e.object({
|
|
288
288
|
role_id: e.string(),
|
|
289
289
|
role_name: e.string()
|
|
290
290
|
}).lock(), z = e.object({
|
|
291
|
+
...$e.shape,
|
|
291
292
|
...Ee.shape,
|
|
292
|
-
...Pe.shape,
|
|
293
293
|
role_level: e.number(),
|
|
294
294
|
last_login_time: e.number()
|
|
295
|
-
}).lock(),
|
|
295
|
+
}).lock(), Ue = e.object({
|
|
296
296
|
...z.shape,
|
|
297
297
|
/** 角色战力 */
|
|
298
298
|
role_fighting: e.number(),
|
|
@@ -306,7 +306,7 @@ const ke = {
|
|
|
306
306
|
name: e.string(),
|
|
307
307
|
avatar_url: e.string(),
|
|
308
308
|
bio: e.string(),
|
|
309
|
-
gender:
|
|
309
|
+
gender: Ve,
|
|
310
310
|
birthday: e.object({ year: e.number(), month: e.number(), day: e.number() })
|
|
311
311
|
}).lock(), J = e.object({
|
|
312
312
|
address_id: e.number(),
|
|
@@ -317,15 +317,15 @@ const ke = {
|
|
|
317
317
|
district: e.string(),
|
|
318
318
|
address: e.string(),
|
|
319
319
|
is_default: e.bool()
|
|
320
|
-
}).lock(),
|
|
320
|
+
}).lock(), De = e.object({
|
|
321
321
|
increased_credit: e.number(),
|
|
322
322
|
decreased_credit: e.number(),
|
|
323
323
|
expired_credit: e.number(),
|
|
324
324
|
balance_credit: e.number()
|
|
325
|
-
}).lock(),
|
|
325
|
+
}).lock(), Ie = e.object({
|
|
326
326
|
id: e.number(),
|
|
327
|
-
change_type:
|
|
328
|
-
change_scene:
|
|
327
|
+
change_type: Re,
|
|
328
|
+
change_scene: Te,
|
|
329
329
|
change_credit: e.number(),
|
|
330
330
|
balance: e.number(),
|
|
331
331
|
change_time: e.number()
|
|
@@ -364,10 +364,10 @@ const ke = {
|
|
|
364
364
|
created_at: e.number(),
|
|
365
365
|
updated_at: e.number(),
|
|
366
366
|
redeemable_quantity: e.number().optional()
|
|
367
|
-
}).lock(),
|
|
367
|
+
}).lock(), Ae = e.object({
|
|
368
368
|
...P(Z.shape, "tag"),
|
|
369
369
|
product: X.clone().optional()
|
|
370
|
-
}).lock(),
|
|
370
|
+
}).lock(), na = e.union(
|
|
371
371
|
e.object({
|
|
372
372
|
server_id: e.string(),
|
|
373
373
|
role_id: e.string()
|
|
@@ -375,7 +375,7 @@ const ke = {
|
|
|
375
375
|
e.object({
|
|
376
376
|
address_id: e.number()
|
|
377
377
|
})
|
|
378
|
-
).satisfies().lock(),
|
|
378
|
+
).satisfies().lock(), Ge = e.object({
|
|
379
379
|
recipient: e.string(),
|
|
380
380
|
mobile: e.string(),
|
|
381
381
|
province: e.string(),
|
|
@@ -384,11 +384,11 @@ const ke = {
|
|
|
384
384
|
address: e.string(),
|
|
385
385
|
express_company: e.string(),
|
|
386
386
|
express_number: e.string()
|
|
387
|
-
}).lock(),
|
|
387
|
+
}).lock(), Oe = e.object({
|
|
388
388
|
server_id: e.string(),
|
|
389
389
|
role_id: e.string(),
|
|
390
390
|
role_name: e.string()
|
|
391
|
-
}).lock(),
|
|
391
|
+
}).lock(), Ne = e.object({
|
|
392
392
|
redemption_id: e.number(),
|
|
393
393
|
player_id: e.string(),
|
|
394
394
|
product_id: e.number(),
|
|
@@ -399,17 +399,17 @@ const ke = {
|
|
|
399
399
|
catalog_name: e.string(),
|
|
400
400
|
quantity: e.number(),
|
|
401
401
|
amount: e.number(),
|
|
402
|
-
status:
|
|
402
|
+
status: Se,
|
|
403
403
|
created_at: e.number(),
|
|
404
|
-
extra_data: e.union(
|
|
405
|
-
}),
|
|
406
|
-
credit_logs: e.array(
|
|
404
|
+
extra_data: e.union(Ge.clone(), Oe.clone()).satisfies().optional()
|
|
405
|
+
}), Qe = e.guard(Le), N = s({ player: Pe }), Be = s({ roles: e.array(z) }), T = s({ role_card: Ue }), Q = e.guard(Fe), B = e.guard(J), Me = s({ addresses: e.array(J) }), Ke = e.guard(De), He = s({
|
|
406
|
+
credit_logs: e.array(Ie),
|
|
407
407
|
next_token: e.string().optional()
|
|
408
|
-
}),
|
|
409
|
-
redemptions: e.array(
|
|
408
|
+
}), ze = s({ products: e.array(X) }), Je = s({ benefits: e.array(Z) }), Ze = s({ benefit: Ae }), Xe = s({
|
|
409
|
+
redemptions: e.array(Ne),
|
|
410
410
|
next_token: e.string().optional()
|
|
411
411
|
});
|
|
412
|
-
class
|
|
412
|
+
class ra {
|
|
413
413
|
token;
|
|
414
414
|
req;
|
|
415
415
|
constructor(t) {
|
|
@@ -421,7 +421,7 @@ class Kr {
|
|
|
421
421
|
* https://kdocs.cn/l/cgp4gSBMbOf1?linkname=tuhsPt3ihp
|
|
422
422
|
*/
|
|
423
423
|
async getConfig(t) {
|
|
424
|
-
const { data: n } = await this.req.get("club/config",
|
|
424
|
+
const { data: n } = await this.req.get("club/config", Qe, t);
|
|
425
425
|
return n;
|
|
426
426
|
}
|
|
427
427
|
/**
|
|
@@ -462,7 +462,7 @@ class Kr {
|
|
|
462
462
|
*/
|
|
463
463
|
async getRoles(t, n, r) {
|
|
464
464
|
if (!await this.token.autoLogin()) return [];
|
|
465
|
-
const { data: a } = await this.req.get("club/roles",
|
|
465
|
+
const { data: a } = await this.req.get("club/roles", Be, {
|
|
466
466
|
...r,
|
|
467
467
|
params: c({ player_id: t, refresh: n })
|
|
468
468
|
});
|
|
@@ -534,7 +534,7 @@ class Kr {
|
|
|
534
534
|
*/
|
|
535
535
|
async getAddresses(t) {
|
|
536
536
|
if (!await this.token.autoLogin()) return [];
|
|
537
|
-
const { data: n } = await this.req.get("club/addresses",
|
|
537
|
+
const { data: n } = await this.req.get("club/addresses", Me, t);
|
|
538
538
|
return n?.addresses ?? [];
|
|
539
539
|
}
|
|
540
540
|
/**
|
|
@@ -582,7 +582,7 @@ class Kr {
|
|
|
582
582
|
*/
|
|
583
583
|
async getUserCredit(t, n) {
|
|
584
584
|
await this.token.autoLogin();
|
|
585
|
-
const { data: r, code: a, message: o } = await this.req.get("club/user-credit",
|
|
585
|
+
const { data: r, code: a, message: o } = await this.req.get("club/user-credit", Ke, {
|
|
586
586
|
...n,
|
|
587
587
|
params: c(t)
|
|
588
588
|
});
|
|
@@ -598,7 +598,7 @@ class Kr {
|
|
|
598
598
|
*/
|
|
599
599
|
async getCreditLogs(t, n) {
|
|
600
600
|
await this.token.autoLogin();
|
|
601
|
-
const { data: r } = await this.req.get("club/credit-logs",
|
|
601
|
+
const { data: r } = await this.req.get("club/credit-logs", He, {
|
|
602
602
|
...n,
|
|
603
603
|
params: c({ max_results: 20, ...t })
|
|
604
604
|
});
|
|
@@ -614,7 +614,7 @@ class Kr {
|
|
|
614
614
|
*/
|
|
615
615
|
async getBenefits(t) {
|
|
616
616
|
if (!await this.token.autoLogin()) return [];
|
|
617
|
-
const { data: n } = await this.req.get("club/benefits",
|
|
617
|
+
const { data: n } = await this.req.get("club/benefits", Je, t);
|
|
618
618
|
return n?.benefits || [];
|
|
619
619
|
}
|
|
620
620
|
/**
|
|
@@ -624,7 +624,7 @@ class Kr {
|
|
|
624
624
|
*/
|
|
625
625
|
async getBenefit(t, n) {
|
|
626
626
|
if (!await this.token.autoLogin()) return null;
|
|
627
|
-
const { data: r } = await this.req.get("club/benefit",
|
|
627
|
+
const { data: r } = await this.req.get("club/benefit", Ze, {
|
|
628
628
|
...n,
|
|
629
629
|
params: { benefit_id: t }
|
|
630
630
|
});
|
|
@@ -636,7 +636,7 @@ class Kr {
|
|
|
636
636
|
* https://kdocs.cn/l/cgp4gSBMbOf1?linkname=r3vC3PzfMQ
|
|
637
637
|
*/
|
|
638
638
|
async getProducts(t, n) {
|
|
639
|
-
const { data: r } = await this.req.get("club/products",
|
|
639
|
+
const { data: r } = await this.req.get("club/products", ze, {
|
|
640
640
|
...n,
|
|
641
641
|
params: t
|
|
642
642
|
});
|
|
@@ -662,7 +662,7 @@ class Kr {
|
|
|
662
662
|
*/
|
|
663
663
|
async getRedemptions(t, n) {
|
|
664
664
|
await this.token.autoLogin();
|
|
665
|
-
const { data: r } = await this.req.get("club/redemptions",
|
|
665
|
+
const { data: r } = await this.req.get("club/redemptions", Xe, {
|
|
666
666
|
...n,
|
|
667
667
|
params: c({ max_results: 20, ...t })
|
|
668
668
|
});
|
|
@@ -693,17 +693,17 @@ const v = {
|
|
|
693
693
|
ExternalCode: "external_gift_code",
|
|
694
694
|
/** 空奖励 */
|
|
695
695
|
VoidItem: "void_item"
|
|
696
|
-
}, Y = e.string().enum(v).lock(),
|
|
696
|
+
}, Y = e.string().enum(v).lock(), aa = v, W = Y, Ye = {
|
|
697
697
|
/** 世游通行证 ID / Combo ID */
|
|
698
698
|
UserId: "user_id",
|
|
699
699
|
/** 游戏角色 ID */
|
|
700
700
|
RoleId: "role_id"
|
|
701
|
-
},
|
|
701
|
+
}, We = e.string().enum(Ye).lock(), et = {
|
|
702
702
|
None: "none",
|
|
703
703
|
Daily: "daily",
|
|
704
704
|
Weekly: "weekly",
|
|
705
705
|
Monthly: "monthly"
|
|
706
|
-
},
|
|
706
|
+
}, tt = e.string().enum(et).lock(), l = {
|
|
707
707
|
/** 预约 */
|
|
708
708
|
Preregister: "preregister",
|
|
709
709
|
/** 抽奖 */
|
|
@@ -745,8 +745,10 @@ const v = {
|
|
|
745
745
|
/** 领取激活码 */
|
|
746
746
|
ClaimActivationKey: "claim_activation_key",
|
|
747
747
|
/** 不朽箴言特有的 AI 聊天 */
|
|
748
|
-
ZeroChatgpt: "zero_chatgpt"
|
|
749
|
-
|
|
748
|
+
ZeroChatgpt: "zero_chatgpt",
|
|
749
|
+
/** 投稿 */
|
|
750
|
+
Ugc: "ugc"
|
|
751
|
+
}, nt = e.string().enum(l).lock(), rt = {
|
|
750
752
|
/** 累计游戏内活跃值 */
|
|
751
753
|
Active: "player_active_points",
|
|
752
754
|
/** 累计登录,单位 人天 */
|
|
@@ -769,14 +771,14 @@ const v = {
|
|
|
769
771
|
EventItems: "event_items",
|
|
770
772
|
/**游戏内任务 */
|
|
771
773
|
GameTask: "game_task"
|
|
772
|
-
}, ee = e.string().enum(
|
|
774
|
+
}, ee = e.string().enum(rt).lock(), at = {
|
|
773
775
|
/** 官方上传 */
|
|
774
776
|
System: "system",
|
|
775
777
|
/** 用户投稿 */
|
|
776
778
|
UserSubmission: "user_submission",
|
|
777
779
|
/** 投票入围 */
|
|
778
780
|
Shortlisted: "shortlisted"
|
|
779
|
-
},
|
|
781
|
+
}, ot = e.string().enum(at).lock(), d = {
|
|
780
782
|
/** 未获得奖励 */
|
|
781
783
|
Ineligible: "ineligible",
|
|
782
784
|
/** 奖励未领取 */
|
|
@@ -787,7 +789,7 @@ const v = {
|
|
|
787
789
|
Failed: "failed",
|
|
788
790
|
/** 奖励已发货 */
|
|
789
791
|
Delivered: "delivered"
|
|
790
|
-
},
|
|
792
|
+
}, oa = e.string().enum(d).lock(), it = {
|
|
791
793
|
/** 奖励未领取 */
|
|
792
794
|
Unclaimed: d.Unclaimed,
|
|
793
795
|
/** 奖励已领取 */
|
|
@@ -796,7 +798,7 @@ const v = {
|
|
|
796
798
|
Failed: d.Failed,
|
|
797
799
|
/** 奖励已发货 */
|
|
798
800
|
Delivered: d.Delivered
|
|
799
|
-
}, te = e.string().enum(
|
|
801
|
+
}, te = e.string().enum(it).lock(), st = {
|
|
800
802
|
/** 未获得奖励 */
|
|
801
803
|
Ineligible: d.Ineligible,
|
|
802
804
|
/** 奖励未领取 */
|
|
@@ -807,17 +809,17 @@ const v = {
|
|
|
807
809
|
Failed: d.Failed,
|
|
808
810
|
/** 奖励已发货 */
|
|
809
811
|
Delivered: d.Delivered
|
|
810
|
-
}, E = e.string().enum(
|
|
812
|
+
}, E = e.string().enum(st).lock(), ct = {
|
|
811
813
|
/** 玩法产出奖励 */
|
|
812
814
|
Output: "output",
|
|
813
815
|
/** 玩法参与奖励 */
|
|
814
816
|
Engage: "engage"
|
|
815
|
-
}, $ = e.string().enum(
|
|
817
|
+
}, $ = e.string().enum(ct).lock(), lt = {
|
|
816
818
|
/** 私有队伍 */
|
|
817
819
|
Private: "private",
|
|
818
820
|
/** 公开队伍 */
|
|
819
821
|
Public: "public"
|
|
820
|
-
}, ut = e.string().enum(
|
|
822
|
+
}, ut = e.string().enum(lt).lock(), f = {
|
|
821
823
|
/** 未知状态 */
|
|
822
824
|
Unknown: "unknown",
|
|
823
825
|
/** 等待开奖 */
|
|
@@ -828,7 +830,7 @@ const v = {
|
|
|
828
830
|
Claimed: "claimed",
|
|
829
831
|
/** 领奖失败 */
|
|
830
832
|
Fail: "fail"
|
|
831
|
-
},
|
|
833
|
+
}, ia = e.string().enum(f).lock(), mt = {
|
|
832
834
|
/** 发起组队 */
|
|
833
835
|
Assemble: "assemble",
|
|
834
836
|
/** 加入队伍 */
|
|
@@ -839,85 +841,107 @@ const v = {
|
|
|
839
841
|
ChangeVisibility: "change_visibility",
|
|
840
842
|
/** 查询组队信息 */
|
|
841
843
|
Query: "query"
|
|
842
|
-
},
|
|
844
|
+
}, sa = e.string().enum(mt).lock(), dt = {
|
|
843
845
|
/** 查询抽奖券 */
|
|
844
846
|
Query: "query",
|
|
845
847
|
/** 开奖 */
|
|
846
848
|
Draw: "draw",
|
|
847
849
|
/** 领奖 */
|
|
848
850
|
Claim: "claim"
|
|
849
|
-
},
|
|
851
|
+
}, ca = e.string().enum(dt).lock(), gt = {
|
|
850
852
|
/** 将所有队员的进度值求和,作为队伍进度值 */
|
|
851
853
|
Sum: "sum",
|
|
852
854
|
/** 以进度值倒序排名第 N 的队员的进度值,作为队伍进度值。如果队伍人数不足 N,则队伍进度值为 0。N 的值来自于配置字段 top_n */
|
|
853
855
|
TopN: "top_n"
|
|
854
|
-
},
|
|
856
|
+
}, pt = e.string().enum(gt).lock(), _t = {
|
|
855
857
|
/** 尚未结算 */
|
|
856
858
|
None: "none",
|
|
857
859
|
/** 获胜奖励 */
|
|
858
860
|
Winner: "winner",
|
|
859
861
|
/** 安慰奖励 */
|
|
860
862
|
Consolation: "consolation"
|
|
861
|
-
},
|
|
863
|
+
}, bt = e.string().enum(_t).lock(), yt = {
|
|
864
|
+
/** 抖音 */
|
|
865
|
+
Douyin: "douyin",
|
|
866
|
+
/** 小红书 */
|
|
867
|
+
Xiaohongshu: "xiaohongshu",
|
|
868
|
+
/** Tap Tap */
|
|
869
|
+
Taptap: "taptap",
|
|
870
|
+
/** B站 */
|
|
871
|
+
Bilibili: "bilibili",
|
|
872
|
+
/** 微博 */
|
|
873
|
+
Weibo: "weibo",
|
|
874
|
+
/** 虎牙 */
|
|
875
|
+
Huya: "huya",
|
|
876
|
+
/** 斗鱼 */
|
|
877
|
+
Douyu: "douyu"
|
|
878
|
+
}, ne = e.string().enum(yt).lock(), ht = {
|
|
879
|
+
/** 已提交 */
|
|
880
|
+
Submitted: "submitted",
|
|
881
|
+
/** 已接收 */
|
|
882
|
+
Accepted: "accepted",
|
|
883
|
+
/** 已拒绝 */
|
|
884
|
+
Rejected: "rejected"
|
|
885
|
+
}, ft = e.string().enum(ht).lock(), wt = e.string().enum(v), y = e.object({
|
|
862
886
|
reward_item_id: e.number(),
|
|
863
887
|
reward_amount: e.number(),
|
|
864
888
|
reward_item_name: e.string(),
|
|
865
889
|
reward_item_icon_url: e.string(),
|
|
866
890
|
reward_item_desc: e.string().optional(),
|
|
867
|
-
reward_item_type:
|
|
891
|
+
reward_item_type: wt,
|
|
868
892
|
reward_item_rating: e.number()
|
|
869
|
-
}).lock(),
|
|
893
|
+
}).lock(), kt = e.object({
|
|
870
894
|
engage_count: e.number(),
|
|
871
895
|
rewards: e.array(y)
|
|
872
|
-
}).lock(),
|
|
896
|
+
}).lock(), vt = e.union(
|
|
873
897
|
e.object({
|
|
874
898
|
feature_reward_type: e.string().enum("every"),
|
|
875
899
|
reward_details: e.array(y)
|
|
876
900
|
}),
|
|
877
901
|
e.object({
|
|
878
902
|
feature_reward_type: e.string().enum("regular"),
|
|
879
|
-
reward_details: e.array(
|
|
903
|
+
reward_details: e.array(kt)
|
|
880
904
|
})
|
|
881
|
-
).satisfies().lock(),
|
|
905
|
+
).satisfies().lock(), u = e.object({
|
|
882
906
|
feature_name: e.string(),
|
|
883
907
|
feature_id: e.number(),
|
|
884
908
|
description: e.string(),
|
|
885
|
-
cycle:
|
|
909
|
+
cycle: tt,
|
|
886
910
|
cycle_limit: e.number(),
|
|
887
911
|
limit: e.number(),
|
|
888
912
|
since: e.number(),
|
|
889
913
|
until: e.number(),
|
|
890
|
-
engage_account:
|
|
891
|
-
feature_rewards:
|
|
914
|
+
engage_account: We,
|
|
915
|
+
feature_rewards: vt.clone().optional(),
|
|
892
916
|
sort: e.number().optional()
|
|
893
|
-
}),
|
|
894
|
-
...
|
|
895
|
-
feature_type: e.string().enum(
|
|
917
|
+
}), Vt = l.Cashback, Ct = e.object({
|
|
918
|
+
...u.shape,
|
|
919
|
+
feature_type: e.string().enum(Vt),
|
|
896
920
|
config: e.object({
|
|
897
921
|
order_start_time: e.number(),
|
|
898
922
|
order_end_time: e.number(),
|
|
899
923
|
claim_rewards_start_time: e.number(),
|
|
900
924
|
claim_rewards_end_time: e.number()
|
|
901
925
|
})
|
|
902
|
-
}),
|
|
903
|
-
...
|
|
904
|
-
feature_type: e.string().enum(kt)
|
|
905
|
-
}), Ct = u.ClaimActivationKey, Vt = e.object({
|
|
906
|
-
...l.shape,
|
|
907
|
-
feature_type: e.string().enum(Ct)
|
|
908
|
-
}), Rt = u.ClaimRewards, jt = e.object({
|
|
909
|
-
...l.shape,
|
|
926
|
+
}), Rt = l.CheckIn, jt = e.object({
|
|
927
|
+
...u.shape,
|
|
910
928
|
feature_type: e.string().enum(Rt)
|
|
911
|
-
}), Tt =
|
|
912
|
-
...
|
|
913
|
-
feature_type: e.string().enum(Tt)
|
|
929
|
+
}), Tt = l.ClaimActivationKey, qt = e.object({
|
|
930
|
+
...u.shape,
|
|
931
|
+
feature_type: e.string().enum(Tt)
|
|
932
|
+
}), xt = l.ClaimRewards, St = e.object({
|
|
933
|
+
...u.shape,
|
|
934
|
+
feature_type: e.string().enum(xt)
|
|
935
|
+
}), Lt = l.Comment, Pt = e.object({
|
|
936
|
+
...u.shape,
|
|
937
|
+
feature_type: e.string().enum(Lt),
|
|
914
938
|
config: e.object({
|
|
915
939
|
comments: e.array(e.string()),
|
|
916
940
|
send_rate: e.number()
|
|
917
941
|
})
|
|
918
|
-
}),
|
|
919
|
-
...
|
|
920
|
-
feature_type: e.string().enum(
|
|
942
|
+
}), Et = l.Follow, $t = e.object({
|
|
943
|
+
...u.shape,
|
|
944
|
+
feature_type: e.string().enum(Et),
|
|
921
945
|
config: e.object({
|
|
922
946
|
platform: e.string(),
|
|
923
947
|
platform_icon: e.string().optional(),
|
|
@@ -925,67 +949,67 @@ const v = {
|
|
|
925
949
|
qr_code_url: e.string().optional(),
|
|
926
950
|
platform_desc: e.string().optional()
|
|
927
951
|
})
|
|
928
|
-
}),
|
|
952
|
+
}), Ut = l.GiftCode, Ft = e.object({
|
|
929
953
|
name: e.string(),
|
|
930
954
|
icon_url: e.string(),
|
|
931
955
|
count: e.number()
|
|
932
|
-
}),
|
|
933
|
-
...
|
|
934
|
-
feature_type: e.string().enum(
|
|
956
|
+
}), Dt = e.object({
|
|
957
|
+
...u.shape,
|
|
958
|
+
feature_type: e.string().enum(Ut),
|
|
935
959
|
config: e.object({
|
|
936
|
-
gift_items: e.array(
|
|
960
|
+
gift_items: e.array(Ft),
|
|
937
961
|
mp_url: e.string().optional(),
|
|
938
962
|
mp_qrcode_url: e.string().optional()
|
|
939
963
|
})
|
|
940
|
-
}),
|
|
941
|
-
...
|
|
942
|
-
feature_type: e.string().enum(
|
|
964
|
+
}), It = l.Invite, At = e.object({
|
|
965
|
+
...u.shape,
|
|
966
|
+
feature_type: e.string().enum(It),
|
|
943
967
|
config: e.object({
|
|
944
968
|
share_url: e.string()
|
|
945
969
|
})
|
|
946
|
-
}),
|
|
947
|
-
...
|
|
948
|
-
feature_type: e.string().enum(
|
|
949
|
-
}),
|
|
970
|
+
}), Gt = l.InvitedRegister, Ot = e.object({
|
|
971
|
+
...u.shape,
|
|
972
|
+
feature_type: e.string().enum(Gt)
|
|
973
|
+
}), Nt = e.string().enum(P(v, "GiftCode", "LotteryTicket")), Qt = l.Lottery, Bt = e.object({
|
|
950
974
|
reward_item_id: e.number(),
|
|
951
975
|
reward_item_name: e.string(),
|
|
952
|
-
reward_item_type:
|
|
976
|
+
reward_item_type: Nt,
|
|
953
977
|
reward_item_icon_url: e.string(),
|
|
954
978
|
reward_item_desc: e.string().optional(),
|
|
955
979
|
reward_amount: e.number(),
|
|
956
980
|
reward_remaining_stock: e.number(),
|
|
957
981
|
reward_item_rating: e.number()
|
|
958
|
-
}),
|
|
959
|
-
...
|
|
960
|
-
feature_type: e.string().enum(
|
|
982
|
+
}), Mt = e.object({
|
|
983
|
+
...u.shape,
|
|
984
|
+
feature_type: e.string().enum(Qt),
|
|
961
985
|
config: e.object({
|
|
962
986
|
consume_item_id: e.number(),
|
|
963
987
|
consume_item_name: e.string(),
|
|
964
988
|
consume_item_icon_url: e.string(),
|
|
965
989
|
consume_item_count: e.array(e.number()),
|
|
966
990
|
consume_item_desc: e.string().optional(),
|
|
967
|
-
rewards: e.array(
|
|
991
|
+
rewards: e.array(Bt)
|
|
968
992
|
})
|
|
969
|
-
}),
|
|
970
|
-
...
|
|
971
|
-
feature_type: e.string().enum(
|
|
993
|
+
}), Kt = l.LotteryDraw, Ht = e.object({
|
|
994
|
+
...u.shape,
|
|
995
|
+
feature_type: e.string().enum(Kt),
|
|
972
996
|
config: e.object({
|
|
973
997
|
draw_not_before: e.number(),
|
|
974
998
|
draw_not_after: e.number()
|
|
975
999
|
})
|
|
976
|
-
}),
|
|
977
|
-
...
|
|
978
|
-
feature_type: e.string().enum(
|
|
979
|
-
}),
|
|
980
|
-
...
|
|
981
|
-
feature_type: e.string().enum(
|
|
1000
|
+
}), zt = l.Preregister, Jt = e.object({
|
|
1001
|
+
...u.shape,
|
|
1002
|
+
feature_type: e.string().enum(zt)
|
|
1003
|
+
}), Zt = l.Quest, Xt = e.object({
|
|
1004
|
+
...u.shape,
|
|
1005
|
+
feature_type: e.string().enum(Zt),
|
|
982
1006
|
config: e.object({
|
|
983
1007
|
objective: ee,
|
|
984
1008
|
completion_value: e.number(),
|
|
985
1009
|
team: e.object({
|
|
986
1010
|
feature_id: e.number().optional(),
|
|
987
1011
|
completion_value: e.number(),
|
|
988
|
-
progress_algorithm:
|
|
1012
|
+
progress_algorithm: pt.clone().optional(),
|
|
989
1013
|
top_n: e.number().optional()
|
|
990
1014
|
}).optional(),
|
|
991
1015
|
config: e.object({
|
|
@@ -995,38 +1019,45 @@ const v = {
|
|
|
995
1019
|
event_item_id: e.number().optional()
|
|
996
1020
|
}).optional()
|
|
997
1021
|
})
|
|
998
|
-
}),
|
|
999
|
-
...
|
|
1000
|
-
feature_type: e.string().enum(
|
|
1001
|
-
}),
|
|
1002
|
-
...
|
|
1003
|
-
feature_type: e.string().enum(
|
|
1022
|
+
}), Yt = l.Register, Wt = e.object({
|
|
1023
|
+
...u.shape,
|
|
1024
|
+
feature_type: e.string().enum(Yt)
|
|
1025
|
+
}), en = l.Share, tn = e.object({
|
|
1026
|
+
...u.shape,
|
|
1027
|
+
feature_type: e.string().enum(en),
|
|
1004
1028
|
config: e.object({
|
|
1005
1029
|
share_platform: e.string(),
|
|
1006
1030
|
jump_url: e.string().optional(),
|
|
1007
1031
|
icon_url: e.string().optional()
|
|
1008
1032
|
})
|
|
1009
|
-
}),
|
|
1010
|
-
...
|
|
1011
|
-
feature_type: e.string().enum(
|
|
1033
|
+
}), nn = l.Subscribe, rn = e.object({
|
|
1034
|
+
...u.shape,
|
|
1035
|
+
feature_type: e.string().enum(nn),
|
|
1012
1036
|
config: e.object({
|
|
1013
1037
|
weixin_template_ids: e.array(e.string())
|
|
1014
1038
|
})
|
|
1015
|
-
}),
|
|
1016
|
-
...
|
|
1017
|
-
feature_type: e.string().enum(
|
|
1039
|
+
}), an = l.Survey, on = e.object({
|
|
1040
|
+
...u.shape,
|
|
1041
|
+
feature_type: e.string().enum(an),
|
|
1018
1042
|
config: e.object({
|
|
1019
1043
|
survey_id: e.string(),
|
|
1020
1044
|
survey_url: e.string()
|
|
1021
1045
|
})
|
|
1022
|
-
}),
|
|
1023
|
-
...
|
|
1024
|
-
feature_type: e.string().enum(
|
|
1046
|
+
}), sn = l.Team, cn = e.object({
|
|
1047
|
+
...u.shape,
|
|
1048
|
+
feature_type: e.string().enum(sn),
|
|
1025
1049
|
config: e.object({
|
|
1026
1050
|
max_members: e.number().min(1),
|
|
1027
1051
|
min_members: e.number().min(1)
|
|
1028
1052
|
})
|
|
1029
|
-
}),
|
|
1053
|
+
}), ln = l.Ugc, un = e.object({
|
|
1054
|
+
...u.shape,
|
|
1055
|
+
feature_type: e.string().enum(ln),
|
|
1056
|
+
config: e.object({
|
|
1057
|
+
allowed_social_medias: e.array(e.string()).optional(),
|
|
1058
|
+
acceptance_rewards: e.array(y).optional()
|
|
1059
|
+
})
|
|
1060
|
+
}), mn = l.Vote, dn = e.object({
|
|
1030
1061
|
sn: e.string(),
|
|
1031
1062
|
name: e.string(),
|
|
1032
1063
|
img_urls: e.array(e.string()).optional(),
|
|
@@ -1036,30 +1067,30 @@ const v = {
|
|
|
1036
1067
|
amount: e.number(),
|
|
1037
1068
|
finalists: e.bool(),
|
|
1038
1069
|
last_vote_time: e.number()
|
|
1039
|
-
}),
|
|
1040
|
-
...
|
|
1041
|
-
feature_type: e.string().enum(
|
|
1070
|
+
}), gn = e.object({
|
|
1071
|
+
...u.shape,
|
|
1072
|
+
feature_type: e.string().enum(mn),
|
|
1042
1073
|
config: e.object({
|
|
1043
1074
|
vote_feature_ids: e.array(e.number()),
|
|
1044
1075
|
submission_feature_ids: e.array(e.number()),
|
|
1045
1076
|
finalists_amount: e.number(),
|
|
1046
|
-
source:
|
|
1047
|
-
options: e.array(
|
|
1077
|
+
source: ot,
|
|
1078
|
+
options: e.array(dn),
|
|
1048
1079
|
rewards: e.array(y)
|
|
1049
1080
|
})
|
|
1050
|
-
}),
|
|
1081
|
+
}), pn = l.Vote2, _n = e.object({
|
|
1051
1082
|
candidate_id: e.string(),
|
|
1052
1083
|
display_name: e.string(),
|
|
1053
1084
|
images: e.array(e.string()).optional(),
|
|
1054
1085
|
videos: e.array(e.string()).optional(),
|
|
1055
1086
|
description: e.string().optional(),
|
|
1056
1087
|
jump_url: e.string()
|
|
1057
|
-
}),
|
|
1058
|
-
...
|
|
1059
|
-
feature_type: e.string().enum(
|
|
1088
|
+
}), bn = e.object({
|
|
1089
|
+
...u.shape,
|
|
1090
|
+
feature_type: e.string().enum(pn),
|
|
1060
1091
|
config: e.object({
|
|
1061
1092
|
vote_item_id: e.number().optional(),
|
|
1062
|
-
candidates: e.array(
|
|
1093
|
+
candidates: e.array(_n),
|
|
1063
1094
|
vote_since: e.number(),
|
|
1064
1095
|
vote_until: e.number(),
|
|
1065
1096
|
rewards_since: e.number(),
|
|
@@ -1067,20 +1098,18 @@ const v = {
|
|
|
1067
1098
|
winner_rewards: e.array(y).optional(),
|
|
1068
1099
|
consolation_rewards: e.array(y).optional()
|
|
1069
1100
|
})
|
|
1070
|
-
}),
|
|
1071
|
-
...
|
|
1072
|
-
feature_type: e.string().enum(
|
|
1073
|
-
}),
|
|
1074
|
-
|
|
1075
|
-
vt,
|
|
1101
|
+
}), yn = l.ZeroChatgpt, hn = e.object({
|
|
1102
|
+
...u.shape,
|
|
1103
|
+
feature_type: e.string().enum(yn)
|
|
1104
|
+
}), fn = e.union(
|
|
1105
|
+
Ct,
|
|
1076
1106
|
jt,
|
|
1077
|
-
qt,
|
|
1078
1107
|
St,
|
|
1079
|
-
|
|
1080
|
-
|
|
1108
|
+
Pt,
|
|
1109
|
+
$t,
|
|
1081
1110
|
Dt,
|
|
1111
|
+
At,
|
|
1082
1112
|
Ot,
|
|
1083
|
-
Qt,
|
|
1084
1113
|
Mt,
|
|
1085
1114
|
Ht,
|
|
1086
1115
|
Jt,
|
|
@@ -1088,32 +1117,35 @@ const v = {
|
|
|
1088
1117
|
Wt,
|
|
1089
1118
|
tn,
|
|
1090
1119
|
rn,
|
|
1091
|
-
|
|
1092
|
-
|
|
1093
|
-
|
|
1094
|
-
|
|
1095
|
-
|
|
1120
|
+
on,
|
|
1121
|
+
cn,
|
|
1122
|
+
gn,
|
|
1123
|
+
bn,
|
|
1124
|
+
qt,
|
|
1125
|
+
hn,
|
|
1126
|
+
un
|
|
1127
|
+
).key("feature_type").satisfies(), wn = e.object({
|
|
1096
1128
|
event_name: e.string(),
|
|
1097
1129
|
rules: e.string(),
|
|
1098
1130
|
since: e.number(),
|
|
1099
1131
|
until: e.number(),
|
|
1100
1132
|
visit_count: e.number().optional(),
|
|
1101
|
-
features: e.array(
|
|
1102
|
-
}).lock(), q = e.union(e.string().pattern("NumberString", /^\d+$/), e.number()),
|
|
1133
|
+
features: e.array(fn)
|
|
1134
|
+
}).lock(), q = e.union(e.string().pattern("NumberString", /^\d+$/), e.number()), re = e.object({
|
|
1103
1135
|
order_total_amount: q,
|
|
1104
1136
|
cashback_total_amount: q,
|
|
1105
1137
|
game_item_count: q
|
|
1106
|
-
}),
|
|
1138
|
+
}), kn = e.object({
|
|
1107
1139
|
activation_key: e.string().disallow("")
|
|
1108
|
-
}),
|
|
1140
|
+
}), vn = e.object({
|
|
1109
1141
|
gift_code: e.string()
|
|
1110
|
-
}),
|
|
1142
|
+
}), Vn = e.object({
|
|
1111
1143
|
user_id: e.string(),
|
|
1112
1144
|
name: e.string().optional(),
|
|
1113
1145
|
avatar_url: e.string().optional()
|
|
1114
|
-
}),
|
|
1146
|
+
}), Cn = e.object({
|
|
1115
1147
|
lottery_count: e.number()
|
|
1116
|
-
}),
|
|
1148
|
+
}), V = e.object({
|
|
1117
1149
|
reward_id: e.number(),
|
|
1118
1150
|
reward_item_id: e.number(),
|
|
1119
1151
|
reward_source: $,
|
|
@@ -1128,59 +1160,59 @@ const v = {
|
|
|
1128
1160
|
event_name: e.string(),
|
|
1129
1161
|
feature_id: e.number(),
|
|
1130
1162
|
engagement_id: e.number(),
|
|
1131
|
-
feature_type:
|
|
1163
|
+
feature_type: nt,
|
|
1132
1164
|
receive_time: e.number(),
|
|
1133
1165
|
extra_data: e.record(e.unknown()).optional()
|
|
1134
|
-
}),
|
|
1166
|
+
}), Rn = e.string().enum(f.Unknown, f.Pending), jn = e.union(
|
|
1135
1167
|
e.object({
|
|
1136
1168
|
ticket: e.string(),
|
|
1137
|
-
status:
|
|
1169
|
+
status: Rn
|
|
1138
1170
|
}),
|
|
1139
1171
|
e.object({
|
|
1140
1172
|
ticket: e.string(),
|
|
1141
1173
|
status: e.string().enum(P(f, "Unknown", "Pending")),
|
|
1142
|
-
reward:
|
|
1174
|
+
reward: V
|
|
1143
1175
|
})
|
|
1144
|
-
).satisfies(),
|
|
1145
|
-
tickets: e.array(
|
|
1146
|
-
}),
|
|
1176
|
+
).satisfies(), Tn = e.object({
|
|
1177
|
+
tickets: e.array(jn)
|
|
1178
|
+
}), qn = e.object({
|
|
1147
1179
|
platforms: e.array(e.string())
|
|
1148
|
-
}),
|
|
1180
|
+
}), ae = e.object({
|
|
1149
1181
|
role_name: e.string(),
|
|
1150
1182
|
is_leader: e.bool(),
|
|
1151
1183
|
is_myself: e.bool().optional(),
|
|
1152
1184
|
progress: e.number().optional()
|
|
1153
|
-
}).lock(),
|
|
1185
|
+
}).lock(), xn = e.object({
|
|
1154
1186
|
objective: ee,
|
|
1155
1187
|
progress: e.number(),
|
|
1156
1188
|
completion_value: e.number().optional(),
|
|
1157
1189
|
team: e.object({
|
|
1158
1190
|
progress: e.number(),
|
|
1159
1191
|
completion_value: e.number().optional(),
|
|
1160
|
-
players: e.array(
|
|
1192
|
+
players: e.array(ae)
|
|
1161
1193
|
}).optional()
|
|
1162
|
-
}),
|
|
1194
|
+
}), Sn = e.object({
|
|
1163
1195
|
progress: e.number(),
|
|
1164
1196
|
team: e.object({
|
|
1165
1197
|
progress: e.number(),
|
|
1166
|
-
team_members: e.array(
|
|
1198
|
+
team_members: e.array(ae).optional()
|
|
1167
1199
|
}).optional()
|
|
1168
|
-
}),
|
|
1200
|
+
}), Ln = e.object({
|
|
1169
1201
|
platform: e.string()
|
|
1170
|
-
}),
|
|
1202
|
+
}), Pn = e.object({
|
|
1171
1203
|
weixin_openid: e.string()
|
|
1172
|
-
}),
|
|
1204
|
+
}), En = e.object({
|
|
1173
1205
|
serial_number: e.number()
|
|
1174
|
-
}),
|
|
1206
|
+
}), $n = e.object({
|
|
1175
1207
|
team_code: e.string(),
|
|
1176
1208
|
leader_name: e.string(),
|
|
1177
1209
|
total_members: e.number()
|
|
1178
|
-
}),
|
|
1210
|
+
}), la = e.object({
|
|
1179
1211
|
is_leader: e.bool(),
|
|
1180
1212
|
is_myself: e.bool().optional(),
|
|
1181
1213
|
role_name: e.string(),
|
|
1182
1214
|
server_name: e.string()
|
|
1183
|
-
}),
|
|
1215
|
+
}), Un = e.object({
|
|
1184
1216
|
team_code: e.string(),
|
|
1185
1217
|
visibility: ut,
|
|
1186
1218
|
members: e.array(
|
|
@@ -1190,54 +1222,84 @@ const v = {
|
|
|
1190
1222
|
server_name: e.string()
|
|
1191
1223
|
})
|
|
1192
1224
|
)
|
|
1193
|
-
}),
|
|
1225
|
+
}), Fn = e.object({
|
|
1226
|
+
ugc_id: e.string(),
|
|
1227
|
+
title: e.string(),
|
|
1228
|
+
content: e.string().optional(),
|
|
1229
|
+
image_urls: e.array(e.string()).optional(),
|
|
1230
|
+
social_media: ne.clone().optional(),
|
|
1231
|
+
social_media_url: e.string().optional()
|
|
1232
|
+
}), Dn = e.object({
|
|
1233
|
+
ugcs: e.array(
|
|
1234
|
+
e.object({
|
|
1235
|
+
ugc_id: e.number(),
|
|
1236
|
+
review_status: ft,
|
|
1237
|
+
title: e.string(),
|
|
1238
|
+
content: e.string().optional(),
|
|
1239
|
+
image_urls: e.array(e.string()).optional(),
|
|
1240
|
+
social_media: ne.clone().optional(),
|
|
1241
|
+
social_media_url: e.string().optional(),
|
|
1242
|
+
server_id: e.number().optional(),
|
|
1243
|
+
server_name: e.string().optional(),
|
|
1244
|
+
role_id: e.string().optional(),
|
|
1245
|
+
role_name: e.string().optional(),
|
|
1246
|
+
total_likes: e.number().optional()
|
|
1247
|
+
})
|
|
1248
|
+
).maybeNull(),
|
|
1249
|
+
next_token: e.string().optional()
|
|
1250
|
+
}), In = e.object({
|
|
1251
|
+
existed: e.bool(),
|
|
1252
|
+
upload_url: e.string().optional(),
|
|
1253
|
+
image_url: e.string()
|
|
1254
|
+
}), An = e.object({
|
|
1194
1255
|
option_sn: e.string()
|
|
1195
|
-
}),
|
|
1256
|
+
}), Gn = e.object({
|
|
1196
1257
|
candidate_id: e.string(),
|
|
1197
1258
|
total_votes: e.number().optional(),
|
|
1198
1259
|
my_votes: e.number().optional(),
|
|
1199
1260
|
votes: e.number().optional()
|
|
1200
|
-
}),
|
|
1201
|
-
rewards_type:
|
|
1202
|
-
rewards: e.array(
|
|
1203
|
-
}),
|
|
1261
|
+
}), On = e.object({
|
|
1262
|
+
rewards_type: bt,
|
|
1263
|
+
rewards: e.array(V).optional()
|
|
1264
|
+
}), Nn = e.object({
|
|
1204
1265
|
candidate_id: e.string(),
|
|
1205
1266
|
is_winner: e.bool(),
|
|
1206
1267
|
total_votes: e.number(),
|
|
1207
1268
|
my_votes: e.number()
|
|
1208
|
-
}),
|
|
1269
|
+
}), Qn = e.object({
|
|
1209
1270
|
role: e.string(),
|
|
1210
1271
|
content: e.string()
|
|
1211
|
-
}),
|
|
1212
|
-
conversations: e.array(
|
|
1213
|
-
}),
|
|
1272
|
+
}), Bn = e.object({
|
|
1273
|
+
conversations: e.array(Qn)
|
|
1274
|
+
}), Mn = e.object({
|
|
1214
1275
|
user_id: e.string(),
|
|
1215
1276
|
name: e.string(),
|
|
1216
1277
|
avatar_url: e.string(),
|
|
1217
1278
|
comment: e.string(),
|
|
1218
1279
|
video_note: e.number(),
|
|
1219
1280
|
created_at: e.number()
|
|
1220
|
-
}),
|
|
1221
|
-
|
|
1222
|
-
|
|
1223
|
-
|
|
1224
|
-
|
|
1225
|
-
Rn,
|
|
1226
|
-
Sn,
|
|
1281
|
+
}), U = e.union(
|
|
1282
|
+
qn,
|
|
1283
|
+
Cn,
|
|
1284
|
+
En,
|
|
1285
|
+
Vn,
|
|
1227
1286
|
Ln,
|
|
1228
|
-
|
|
1229
|
-
|
|
1230
|
-
|
|
1287
|
+
An,
|
|
1288
|
+
Gn,
|
|
1289
|
+
Pn,
|
|
1290
|
+
re,
|
|
1291
|
+
vn,
|
|
1292
|
+
Un,
|
|
1231
1293
|
xn,
|
|
1232
|
-
|
|
1294
|
+
Tn,
|
|
1233
1295
|
kn,
|
|
1234
|
-
|
|
1296
|
+
Bn,
|
|
1235
1297
|
Fn,
|
|
1236
1298
|
e.custom(
|
|
1237
1299
|
"EmptyObject",
|
|
1238
1300
|
(i) => k(i) && Object.keys(i).length === 0
|
|
1239
1301
|
)
|
|
1240
|
-
).satisfies().lock(),
|
|
1302
|
+
).satisfies().lock(), Kn = e.object({
|
|
1241
1303
|
reward_id: e.number(),
|
|
1242
1304
|
reward_item_id: e.number(),
|
|
1243
1305
|
reward_item_type: W,
|
|
@@ -1249,8 +1311,8 @@ const v = {
|
|
|
1249
1311
|
reward_item_desc: e.string().optional(),
|
|
1250
1312
|
reward_item_rating: e.number(),
|
|
1251
1313
|
receive_time: e.number(),
|
|
1252
|
-
extra_data: e.union(...
|
|
1253
|
-
}),
|
|
1314
|
+
extra_data: e.union(...U.validators, e.record(e.unknown())).satisfies().optional()
|
|
1315
|
+
}), Hn = e.object({
|
|
1254
1316
|
reward_id: e.number(),
|
|
1255
1317
|
reward_item_id: e.number(),
|
|
1256
1318
|
reward_item_name: e.string(),
|
|
@@ -1262,67 +1324,67 @@ const v = {
|
|
|
1262
1324
|
reward_status: te,
|
|
1263
1325
|
reward_source: $,
|
|
1264
1326
|
extra_data: e.record(e.unknown()).optional()
|
|
1265
|
-
}),
|
|
1327
|
+
}), zn = e.object({
|
|
1266
1328
|
engagement_id: e.number(),
|
|
1267
1329
|
user_id: e.string(),
|
|
1268
1330
|
event_id: e.number(),
|
|
1269
1331
|
feature_id: e.number(),
|
|
1270
1332
|
sequence: e.number(),
|
|
1271
|
-
data:
|
|
1333
|
+
data: U.clone().optional(),
|
|
1272
1334
|
server_id: e.string().optional(),
|
|
1273
1335
|
role_id: e.string().optional(),
|
|
1274
1336
|
created_at: e.number(),
|
|
1275
|
-
rewards: e.array(
|
|
1276
|
-
}).lock(),
|
|
1337
|
+
rewards: e.array(Kn).optional()
|
|
1338
|
+
}).lock(), Jn = e.object({
|
|
1277
1339
|
allowed: e.bool(),
|
|
1278
1340
|
registered: e.bool()
|
|
1279
|
-
}),
|
|
1341
|
+
}), Zn = e.object({
|
|
1280
1342
|
feature_id: e.number(),
|
|
1281
1343
|
can_engage: e.bool(),
|
|
1282
1344
|
has_unclaimed_rewards: e.bool()
|
|
1283
|
-
}),
|
|
1345
|
+
}), Xn = e.object({
|
|
1284
1346
|
engagement_id: e.number(),
|
|
1285
1347
|
engagement: e.object({
|
|
1286
1348
|
engagement_id: e.number(),
|
|
1287
1349
|
sequence: e.number(),
|
|
1288
1350
|
feature_id: e.number(),
|
|
1289
|
-
data:
|
|
1351
|
+
data: U.clone().optional()
|
|
1290
1352
|
}).optional(),
|
|
1291
|
-
rewards: e.array(
|
|
1353
|
+
rewards: e.array(Hn).optional(),
|
|
1292
1354
|
scan: e.bool().optional()
|
|
1293
|
-
}),
|
|
1355
|
+
}), Yn = e.object({
|
|
1294
1356
|
reward_id: e.number(),
|
|
1295
1357
|
reward_status: E
|
|
1296
|
-
}),
|
|
1297
|
-
engagements: e.union(e.array(
|
|
1298
|
-
}),
|
|
1299
|
-
status: e.array(
|
|
1300
|
-
}),
|
|
1358
|
+
}), Wn = e.guard(wn), er = e.guard(Jn), x = s({ count: e.number() }), tr = s({ first_visit: e.bool() }), nr = s({
|
|
1359
|
+
engagements: e.union(e.array(Mn), e.array($n))
|
|
1360
|
+
}), rr = s({
|
|
1361
|
+
status: e.array(Zn)
|
|
1362
|
+
}), ar = s({
|
|
1301
1363
|
engagements_counts: e.record(e.number())
|
|
1302
|
-
}),
|
|
1303
|
-
engagements: e.array(
|
|
1364
|
+
}), or = s({
|
|
1365
|
+
engagements: e.array(zn),
|
|
1304
1366
|
next_token: e.string().optional()
|
|
1305
|
-
}),
|
|
1306
|
-
claimed_items: e.array(
|
|
1307
|
-
}),
|
|
1308
|
-
rewards: e.array(
|
|
1309
|
-
}),
|
|
1367
|
+
}), ir = e.guard(Xn), sr = s({
|
|
1368
|
+
claimed_items: e.array(Yn)
|
|
1369
|
+
}), cr = s({
|
|
1370
|
+
rewards: e.array(V)
|
|
1371
|
+
}), lr = s({
|
|
1310
1372
|
reward_status: E
|
|
1311
|
-
}),
|
|
1312
|
-
user_rewards: e.array(
|
|
1373
|
+
}), ur = s({
|
|
1374
|
+
user_rewards: e.array(V),
|
|
1313
1375
|
next_token: e.string().optional()
|
|
1314
|
-
}),
|
|
1376
|
+
}), mr = s({
|
|
1315
1377
|
scene: e.string()
|
|
1316
|
-
}),
|
|
1378
|
+
}), dr = s({
|
|
1317
1379
|
params: e.string()
|
|
1318
|
-
}),
|
|
1380
|
+
}), gr = s({
|
|
1319
1381
|
img: e.string()
|
|
1320
|
-
}),
|
|
1382
|
+
}), pr = e.guard(Sn), _r = e.guard(On), br = e.guard(
|
|
1321
1383
|
e.object({
|
|
1322
|
-
candidate_votes: e.array(
|
|
1384
|
+
candidate_votes: e.array(Nn)
|
|
1323
1385
|
})
|
|
1324
|
-
),
|
|
1325
|
-
class
|
|
1386
|
+
), yr = e.guard(re), hr = e.guard(Dn), fr = e.guard(In);
|
|
1387
|
+
class ua {
|
|
1326
1388
|
token;
|
|
1327
1389
|
event = 0;
|
|
1328
1390
|
req;
|
|
@@ -1335,7 +1397,7 @@ class Wr {
|
|
|
1335
1397
|
* https://kdocs.cn/l/cf2mO2uRLqh9?linkname=OWGSPF3Ysl
|
|
1336
1398
|
*/
|
|
1337
1399
|
async verifyMobileAllowed(t, n, r) {
|
|
1338
|
-
const { data: a } = await this.req.get("verify-mobile-allowed",
|
|
1400
|
+
const { data: a } = await this.req.get("verify-mobile-allowed", er, {
|
|
1339
1401
|
...r,
|
|
1340
1402
|
params: { game_id: t, mobile: n }
|
|
1341
1403
|
});
|
|
@@ -1347,7 +1409,7 @@ class Wr {
|
|
|
1347
1409
|
* https://kdocs.cn/l/ckWFDcOsYEUA?linkname=wFXxtdNKPm
|
|
1348
1410
|
*/
|
|
1349
1411
|
async getConfig(t) {
|
|
1350
|
-
const { data: n } = await this.req.get(`event/${this.event}/event-config`,
|
|
1412
|
+
const { data: n } = await this.req.get(`event/${this.event}/event-config`, Wn, t);
|
|
1351
1413
|
return n;
|
|
1352
1414
|
}
|
|
1353
1415
|
/**
|
|
@@ -1382,7 +1444,7 @@ class Wr {
|
|
|
1382
1444
|
* https://kdocs.cn/l/ckWFDcOsYEUA?linkname=THtZ4ewIQW
|
|
1383
1445
|
*/
|
|
1384
1446
|
async getEngagements(t, n) {
|
|
1385
|
-
const { data: r } = await this.req.get(`event/${this.event}/feature-engagements`,
|
|
1447
|
+
const { data: r } = await this.req.get(`event/${this.event}/feature-engagements`, nr, {
|
|
1386
1448
|
...n,
|
|
1387
1449
|
params: { feature_id: t }
|
|
1388
1450
|
});
|
|
@@ -1398,7 +1460,7 @@ class Wr {
|
|
|
1398
1460
|
const { data: r, code: a, message: o } = await this.req.post(
|
|
1399
1461
|
`event/${this.event}/visit`,
|
|
1400
1462
|
c(t || {}),
|
|
1401
|
-
|
|
1463
|
+
tr,
|
|
1402
1464
|
n
|
|
1403
1465
|
);
|
|
1404
1466
|
return r ?? {
|
|
@@ -1415,7 +1477,7 @@ class Wr {
|
|
|
1415
1477
|
*/
|
|
1416
1478
|
async getUserFeatureStatus(t, n) {
|
|
1417
1479
|
if (!await this.token.autoLogin()) return [];
|
|
1418
|
-
const { data: r } = await this.req.get("event/user-feature-status",
|
|
1480
|
+
const { data: r } = await this.req.get("event/user-feature-status", rr, {
|
|
1419
1481
|
...n,
|
|
1420
1482
|
message: !1,
|
|
1421
1483
|
params: c({ ...t, event_id: this.event })
|
|
@@ -1429,7 +1491,7 @@ class Wr {
|
|
|
1429
1491
|
*/
|
|
1430
1492
|
async getUserEngagementCount(t, n) {
|
|
1431
1493
|
if (!await this.token.autoLogin()) return {};
|
|
1432
|
-
const { data: r } = await this.req.get("event/user-engagements-count",
|
|
1494
|
+
const { data: r } = await this.req.get("event/user-engagements-count", ar, {
|
|
1433
1495
|
message: !1,
|
|
1434
1496
|
params: c({ ...n, event_id: this.event, feature_id: t })
|
|
1435
1497
|
});
|
|
@@ -1448,7 +1510,7 @@ class Wr {
|
|
|
1448
1510
|
engagements: [],
|
|
1449
1511
|
next_token: ""
|
|
1450
1512
|
};
|
|
1451
|
-
const { data: a } = await this.req.get("event/user-engagements",
|
|
1513
|
+
const { data: a } = await this.req.get("event/user-engagements", or, {
|
|
1452
1514
|
...r,
|
|
1453
1515
|
params: c({
|
|
1454
1516
|
max_results: 20,
|
|
@@ -1480,7 +1542,7 @@ class Wr {
|
|
|
1480
1542
|
engagement: n,
|
|
1481
1543
|
...r
|
|
1482
1544
|
}),
|
|
1483
|
-
|
|
1545
|
+
ir,
|
|
1484
1546
|
a
|
|
1485
1547
|
);
|
|
1486
1548
|
return o ?? {
|
|
@@ -1503,7 +1565,7 @@ class Wr {
|
|
|
1503
1565
|
...t,
|
|
1504
1566
|
server_id: t.server_id ? +t.server_id : void 0
|
|
1505
1567
|
}),
|
|
1506
|
-
|
|
1568
|
+
sr,
|
|
1507
1569
|
n
|
|
1508
1570
|
);
|
|
1509
1571
|
return r?.claimed_items || {
|
|
@@ -1524,7 +1586,7 @@ class Wr {
|
|
|
1524
1586
|
...t,
|
|
1525
1587
|
server_id: t.server_id ? +t.server_id : void 0
|
|
1526
1588
|
}),
|
|
1527
|
-
|
|
1589
|
+
cr,
|
|
1528
1590
|
n
|
|
1529
1591
|
);
|
|
1530
1592
|
return r?.rewards || {
|
|
@@ -1542,7 +1604,7 @@ class Wr {
|
|
|
1542
1604
|
const { data: r, code: a, message: o } = await this.req.post(
|
|
1543
1605
|
"event/claim-weixin-hongbao",
|
|
1544
1606
|
{ reward_id: t },
|
|
1545
|
-
|
|
1607
|
+
lr,
|
|
1546
1608
|
n
|
|
1547
1609
|
);
|
|
1548
1610
|
return r || {
|
|
@@ -1583,7 +1645,7 @@ class Wr {
|
|
|
1583
1645
|
const { data: r } = await this.req.post(
|
|
1584
1646
|
"event/user-rewards",
|
|
1585
1647
|
c({ max_results: 20, ...t, event_id: this.event }),
|
|
1586
|
-
|
|
1648
|
+
ur,
|
|
1587
1649
|
n
|
|
1588
1650
|
);
|
|
1589
1651
|
return {
|
|
@@ -1631,7 +1693,7 @@ class Wr {
|
|
|
1631
1693
|
*/
|
|
1632
1694
|
async getUnlimitQrcodeScene(t, n) {
|
|
1633
1695
|
if (!await this.token.autoLogin()) return null;
|
|
1634
|
-
const { data: r } = await this.req.get("event/unlimit-qrcode-scene",
|
|
1696
|
+
const { data: r } = await this.req.get("event/unlimit-qrcode-scene", mr, {
|
|
1635
1697
|
...n,
|
|
1636
1698
|
params: { params: t }
|
|
1637
1699
|
});
|
|
@@ -1645,7 +1707,7 @@ class Wr {
|
|
|
1645
1707
|
* @param scene - 小程序码 scene 值
|
|
1646
1708
|
*/
|
|
1647
1709
|
async getParamsByQrcodeScene(t, n) {
|
|
1648
|
-
const { data: r } = await this.req.get("event/params-by-qrcode-scene",
|
|
1710
|
+
const { data: r } = await this.req.get("event/params-by-qrcode-scene", dr, {
|
|
1649
1711
|
...n,
|
|
1650
1712
|
params: { scene: t }
|
|
1651
1713
|
});
|
|
@@ -1661,7 +1723,7 @@ class Wr {
|
|
|
1661
1723
|
const { data: r } = await this.req.post(
|
|
1662
1724
|
"event/unlimit-qrcode",
|
|
1663
1725
|
c(t),
|
|
1664
|
-
|
|
1726
|
+
gr,
|
|
1665
1727
|
n
|
|
1666
1728
|
);
|
|
1667
1729
|
return r?.img ?? null;
|
|
@@ -1673,7 +1735,7 @@ class Wr {
|
|
|
1673
1735
|
*/
|
|
1674
1736
|
async getQuestProgress(t, n) {
|
|
1675
1737
|
if (!await this.token.autoLogin()) return null;
|
|
1676
|
-
const { data: r, code: a, message: o } = await this.req.get(`event/${this.event}/quest-progress`,
|
|
1738
|
+
const { data: r, code: a, message: o } = await this.req.get(`event/${this.event}/quest-progress`, pr, {
|
|
1677
1739
|
message: !1,
|
|
1678
1740
|
...n,
|
|
1679
1741
|
params: { feature_id: t }
|
|
@@ -1695,7 +1757,7 @@ class Wr {
|
|
|
1695
1757
|
const { data: r, code: a, message: o } = await this.req.post(
|
|
1696
1758
|
"event/vote2/rewards",
|
|
1697
1759
|
{ feature_id: t, event_id: this.event },
|
|
1698
|
-
|
|
1760
|
+
_r,
|
|
1699
1761
|
n
|
|
1700
1762
|
);
|
|
1701
1763
|
return r || {
|
|
@@ -1710,7 +1772,7 @@ class Wr {
|
|
|
1710
1772
|
*/
|
|
1711
1773
|
async getVote2Leaderboard(t, n) {
|
|
1712
1774
|
if (!await this.token.autoLogin()) return [];
|
|
1713
|
-
const { data: r } = await this.req.get("event/vote2/leaderboard",
|
|
1775
|
+
const { data: r } = await this.req.get("event/vote2/leaderboard", br, {
|
|
1714
1776
|
...n,
|
|
1715
1777
|
params: { feature_id: t, event_id: this.event }
|
|
1716
1778
|
});
|
|
@@ -1723,7 +1785,7 @@ class Wr {
|
|
|
1723
1785
|
*/
|
|
1724
1786
|
async getCashbackQuery(t, n) {
|
|
1725
1787
|
if (!await this.token.autoLogin()) return null;
|
|
1726
|
-
const { data: r, code: a, message: o } = await this.req.get("event/cashback/query",
|
|
1788
|
+
const { data: r, code: a, message: o } = await this.req.get("event/cashback/query", yr, {
|
|
1727
1789
|
...n,
|
|
1728
1790
|
params: { feature_id: t, event_id: this.event }
|
|
1729
1791
|
});
|
|
@@ -1732,13 +1794,56 @@ class Wr {
|
|
|
1732
1794
|
error: a
|
|
1733
1795
|
};
|
|
1734
1796
|
}
|
|
1797
|
+
/**
|
|
1798
|
+
* 获取当前登录用户的投稿记录
|
|
1799
|
+
*
|
|
1800
|
+
* https://www.kdocs.cn/l/ckWFDcOsYEUA?linkname=biEwrNKhAF
|
|
1801
|
+
*/
|
|
1802
|
+
async getUgcRecord(t, n) {
|
|
1803
|
+
if (!await this.token.autoLogin()) return null;
|
|
1804
|
+
const { data: r, code: a, message: o } = await this.req.get("event/ugc/my", hr, {
|
|
1805
|
+
...n,
|
|
1806
|
+
params: {
|
|
1807
|
+
max_results: 20,
|
|
1808
|
+
...t,
|
|
1809
|
+
event_id: this.event
|
|
1810
|
+
/** 查询返回最大参与记录数 */
|
|
1811
|
+
}
|
|
1812
|
+
});
|
|
1813
|
+
return r || {
|
|
1814
|
+
message: o,
|
|
1815
|
+
error: a
|
|
1816
|
+
};
|
|
1817
|
+
}
|
|
1818
|
+
/**
|
|
1819
|
+
* 媒体资源预上传地址获取,为投稿玩法(UGC)提供 S3 预签名上传 URL,供用户客户端上传图片资源
|
|
1820
|
+
*
|
|
1821
|
+
* 仅允许上传 image/jpeg 和 image/png 格式的图片。
|
|
1822
|
+
* 图片会按照 event_id / feature_id 维度分目录存储在S3 对象存储中。
|
|
1823
|
+
* 投稿玩法不调用任何第三方(网易易盾等)进行内容安全检测。
|
|
1824
|
+
*
|
|
1825
|
+
* https://www.kdocs.cn/l/ckWFDcOsYEUA?linkname=xhGGpJEbol
|
|
1826
|
+
*/
|
|
1827
|
+
async ugcUploadImage(t, n) {
|
|
1828
|
+
if (!await this.token.autoLogin()) return null;
|
|
1829
|
+
const { data: r, code: a, message: o } = await this.req.post(
|
|
1830
|
+
"event/ugc/upload-image",
|
|
1831
|
+
{ ...t, event_id: this.event },
|
|
1832
|
+
fr,
|
|
1833
|
+
n
|
|
1834
|
+
);
|
|
1835
|
+
return r || {
|
|
1836
|
+
message: o,
|
|
1837
|
+
code: a
|
|
1838
|
+
};
|
|
1839
|
+
}
|
|
1735
1840
|
}
|
|
1736
|
-
const
|
|
1841
|
+
const wr = {
|
|
1737
1842
|
/** 所有人均可以发帖 */
|
|
1738
1843
|
All: "all",
|
|
1739
1844
|
/** 指定用户可发帖 */
|
|
1740
1845
|
Limit: "limit"
|
|
1741
|
-
},
|
|
1846
|
+
}, kr = e.string().enum(wr).lock(), vr = {
|
|
1742
1847
|
/** 待审核(仅自己可见) */
|
|
1743
1848
|
Pending: "pending",
|
|
1744
1849
|
/** 审核通过 */
|
|
@@ -1747,14 +1852,14 @@ const ur = {
|
|
|
1747
1852
|
Failed: "failed",
|
|
1748
1853
|
/** 嫌疑(仅自己可见) */
|
|
1749
1854
|
Suspect: "suspect"
|
|
1750
|
-
},
|
|
1855
|
+
}, oe = e.string().enum(vr).lock(), Vr = {
|
|
1751
1856
|
/** 系统通知 */
|
|
1752
1857
|
System: "system",
|
|
1753
1858
|
/** 评论我的 */
|
|
1754
1859
|
Comment: "comment",
|
|
1755
1860
|
/** 点赞通知 */
|
|
1756
1861
|
Like: "like"
|
|
1757
|
-
},
|
|
1862
|
+
}, ma = e.string().enum(Vr).lock(), m = {
|
|
1758
1863
|
/** 系统通知 */
|
|
1759
1864
|
System: "system",
|
|
1760
1865
|
/** 帖子被置顶 */
|
|
@@ -1779,15 +1884,15 @@ const ur = {
|
|
|
1779
1884
|
ReplyLiked: "reply_liked",
|
|
1780
1885
|
/** 回复被删除 */
|
|
1781
1886
|
ReplyDeleted: "reply_deleted"
|
|
1782
|
-
},
|
|
1887
|
+
}, Cr = e.string().enum(m).lock(), ie = e.object({
|
|
1783
1888
|
forum_id: e.number(),
|
|
1784
1889
|
icon_url: e.string(),
|
|
1785
1890
|
name: e.string(),
|
|
1786
1891
|
tags: e.array(e.string()),
|
|
1787
1892
|
sort: e.number(),
|
|
1788
|
-
mode:
|
|
1893
|
+
mode: kr,
|
|
1789
1894
|
member_ids: e.array(e.number())
|
|
1790
|
-
}).lock(),
|
|
1895
|
+
}).lock(), F = e.object({
|
|
1791
1896
|
topic_id: e.number(),
|
|
1792
1897
|
cover_url: e.string(),
|
|
1793
1898
|
name: e.string(),
|
|
@@ -1796,7 +1901,7 @@ const ur = {
|
|
|
1796
1901
|
post_num: e.number()
|
|
1797
1902
|
}).lock(), D = e.object({
|
|
1798
1903
|
post_id: e.number(),
|
|
1799
|
-
forum:
|
|
1904
|
+
forum: ie,
|
|
1800
1905
|
posted_by: e.string(),
|
|
1801
1906
|
nickname: e.string(),
|
|
1802
1907
|
avatar_url: e.string(),
|
|
@@ -1808,21 +1913,21 @@ const ur = {
|
|
|
1808
1913
|
comments_num: e.number(),
|
|
1809
1914
|
liked: e.bool(),
|
|
1810
1915
|
image_urls: e.array(e.string()),
|
|
1811
|
-
topics: e.array(
|
|
1916
|
+
topics: e.array(F),
|
|
1812
1917
|
event_ids: e.array(e.number()),
|
|
1813
1918
|
is_pinned: e.bool(),
|
|
1814
1919
|
is_highlighted: e.bool(),
|
|
1815
|
-
status:
|
|
1920
|
+
status: oe,
|
|
1816
1921
|
create_time: e.number()
|
|
1817
|
-
}).lock(),
|
|
1922
|
+
}).lock(), se = e.object({
|
|
1818
1923
|
err_msg: e.string().optional()
|
|
1819
|
-
}).optional().lock(),
|
|
1924
|
+
}).optional().lock(), Rr = e.object({
|
|
1820
1925
|
reply_id: e.number(),
|
|
1821
1926
|
reply_content: e.string().optional(),
|
|
1822
1927
|
replied_by: e.string(),
|
|
1823
1928
|
nickname: e.string(),
|
|
1824
1929
|
avatar_url: e.string()
|
|
1825
|
-
}).lock(),
|
|
1930
|
+
}).lock(), C = e.object({
|
|
1826
1931
|
reply_id: e.number(),
|
|
1827
1932
|
comment_id: e.number(),
|
|
1828
1933
|
comment_content: e.string().optional(),
|
|
@@ -1835,7 +1940,7 @@ const ur = {
|
|
|
1835
1940
|
content: e.string(),
|
|
1836
1941
|
like_num: e.number(),
|
|
1837
1942
|
liked: e.bool(),
|
|
1838
|
-
reply_to:
|
|
1943
|
+
reply_to: Rr,
|
|
1839
1944
|
create_time: e.number()
|
|
1840
1945
|
}).lock(), w = e.object({
|
|
1841
1946
|
comment_id: e.number(),
|
|
@@ -1855,21 +1960,21 @@ const ur = {
|
|
|
1855
1960
|
liked: e.bool(),
|
|
1856
1961
|
image_url: e.string(),
|
|
1857
1962
|
create_time: e.number(),
|
|
1858
|
-
status:
|
|
1859
|
-
replies: e.array(
|
|
1860
|
-
}).lock(),
|
|
1963
|
+
status: oe,
|
|
1964
|
+
replies: e.array(C).optional()
|
|
1965
|
+
}).lock(), jr = e.object({
|
|
1861
1966
|
image_url: e.string(),
|
|
1862
1967
|
upload_url: e.string(),
|
|
1863
1968
|
existed: e.bool()
|
|
1864
1969
|
}).lock(), _ = e.object({
|
|
1865
1970
|
notification_id: e.string(),
|
|
1866
|
-
notification_type:
|
|
1971
|
+
notification_type: Cr,
|
|
1867
1972
|
is_read: e.bool(),
|
|
1868
1973
|
create_time: e.number(),
|
|
1869
1974
|
origin_user_id: e.string(),
|
|
1870
1975
|
origin_user_name: e.string(),
|
|
1871
1976
|
origin_user_avatar_url: e.string()
|
|
1872
|
-
}).lock(),
|
|
1977
|
+
}).lock(), Tr = e.object({
|
|
1873
1978
|
system_message_subject: e.string(),
|
|
1874
1979
|
system_message_content: e.string()
|
|
1875
1980
|
}).lock(), I = e.object({
|
|
@@ -1883,11 +1988,11 @@ const ur = {
|
|
|
1883
1988
|
}).lock(), A = e.object({
|
|
1884
1989
|
reply_id: e.number(),
|
|
1885
1990
|
reply_content: e.string()
|
|
1886
|
-
}).lock(),
|
|
1991
|
+
}).lock(), qr = e.object({
|
|
1887
1992
|
..._.shape,
|
|
1888
|
-
...
|
|
1993
|
+
...Tr.shape,
|
|
1889
1994
|
notification_type: e.string().enum(m.System)
|
|
1890
|
-
}),
|
|
1995
|
+
}), xr = e.object({
|
|
1891
1996
|
..._.shape,
|
|
1892
1997
|
...I.shape,
|
|
1893
1998
|
notification_type: e.string().enum(
|
|
@@ -1896,68 +2001,68 @@ const ur = {
|
|
|
1896
2001
|
m.PostDeleted,
|
|
1897
2002
|
m.PostLiked
|
|
1898
2003
|
)
|
|
1899
|
-
}),
|
|
2004
|
+
}), Sr = e.object({
|
|
1900
2005
|
..._.shape,
|
|
1901
2006
|
...I.shape,
|
|
1902
2007
|
...R.shape,
|
|
1903
2008
|
notification_type: e.string().enum(m.PostCommented)
|
|
1904
|
-
}),
|
|
2009
|
+
}), Lr = e.object({
|
|
1905
2010
|
..._.shape,
|
|
1906
2011
|
...R.shape,
|
|
1907
2012
|
...A.shape,
|
|
1908
2013
|
notification_type: e.string().enum(m.CommentReplied)
|
|
1909
|
-
}),
|
|
2014
|
+
}), Pr = e.object({
|
|
1910
2015
|
..._.shape,
|
|
1911
2016
|
...R.shape,
|
|
1912
2017
|
...I.shape,
|
|
1913
2018
|
notification_type: e.string().enum(m.CommentLiked, m.CommentDeleted)
|
|
1914
|
-
}),
|
|
2019
|
+
}), Er = e.object({
|
|
1915
2020
|
..._.shape,
|
|
1916
2021
|
...A.shape,
|
|
1917
2022
|
notification_type: e.string().enum(m.ReplyReplied),
|
|
1918
2023
|
comment_id: e.number(),
|
|
1919
2024
|
reply_to_reply_id: e.number(),
|
|
1920
2025
|
reply_to_reply_content: e.string()
|
|
1921
|
-
}),
|
|
2026
|
+
}), $r = e.object({
|
|
1922
2027
|
..._.shape,
|
|
1923
2028
|
...A.shape,
|
|
1924
2029
|
...R.shape,
|
|
1925
2030
|
notification_type: e.string().enum(m.ReplyLiked, m.ReplyDeleted)
|
|
1926
|
-
}),
|
|
1927
|
-
|
|
1928
|
-
|
|
1929
|
-
|
|
1930
|
-
|
|
1931
|
-
|
|
1932
|
-
|
|
1933
|
-
|
|
1934
|
-
).satisfies().lock(),
|
|
2031
|
+
}), Ur = e.union(
|
|
2032
|
+
qr,
|
|
2033
|
+
xr,
|
|
2034
|
+
Sr,
|
|
2035
|
+
Lr,
|
|
2036
|
+
Pr,
|
|
2037
|
+
Er,
|
|
2038
|
+
$r
|
|
2039
|
+
).satisfies().lock(), Fr = s({ forums: e.array(ie) }), Dr = s({ topics: e.array(F) }), Ir = s({ topic: F }), Ar = s({ post: D }), M = s({
|
|
1935
2040
|
posts: e.array(D),
|
|
1936
2041
|
next_token: e.string().optional()
|
|
1937
|
-
}),
|
|
2042
|
+
}), Gr = s({
|
|
1938
2043
|
post: D.clone().optional(),
|
|
1939
|
-
antispam:
|
|
1940
|
-
}),
|
|
1941
|
-
replies: e.array(
|
|
2044
|
+
antispam: se.clone().optional()
|
|
2045
|
+
}), Or = s({
|
|
2046
|
+
replies: e.array(C),
|
|
1942
2047
|
next_token: e.string().optional()
|
|
1943
|
-
}),
|
|
1944
|
-
reply:
|
|
1945
|
-
antispam:
|
|
1946
|
-
}),
|
|
2048
|
+
}), Nr = s({ reply: C }), Qr = s({
|
|
2049
|
+
reply: C.clone().optional(),
|
|
2050
|
+
antispam: se.clone().optional()
|
|
2051
|
+
}), Br = s({ comment: w }), Mr = s({
|
|
1947
2052
|
comments: e.array(w),
|
|
1948
2053
|
next_token: e.string().optional()
|
|
1949
|
-
}),
|
|
2054
|
+
}), Kr = s({
|
|
1950
2055
|
comment: w.clone().optional(),
|
|
1951
2056
|
antispam: w.clone().optional()
|
|
1952
|
-
}),
|
|
1953
|
-
notifications: e.array(
|
|
2057
|
+
}), Hr = e.guard(jr), zr = s({
|
|
2058
|
+
notifications: e.array(Ur),
|
|
1954
2059
|
next_token: e.string().optional()
|
|
1955
|
-
}),
|
|
2060
|
+
}), Jr = s({
|
|
1956
2061
|
system: e.number(),
|
|
1957
2062
|
comment: e.number(),
|
|
1958
2063
|
like: e.number()
|
|
1959
2064
|
});
|
|
1960
|
-
class
|
|
2065
|
+
class da {
|
|
1961
2066
|
token;
|
|
1962
2067
|
req;
|
|
1963
2068
|
constructor(t) {
|
|
@@ -1969,7 +2074,7 @@ class ta {
|
|
|
1969
2074
|
* https://kdocs.cn/l/cbggfJodHLIz?linkname=QaqUa2K0z0
|
|
1970
2075
|
*/
|
|
1971
2076
|
async getForums(t) {
|
|
1972
|
-
const { data: n } = await this.req.get("community/forums",
|
|
2077
|
+
const { data: n } = await this.req.get("community/forums", Fr, t);
|
|
1973
2078
|
return n?.forums || [];
|
|
1974
2079
|
}
|
|
1975
2080
|
/**
|
|
@@ -1978,7 +2083,7 @@ class ta {
|
|
|
1978
2083
|
* https://kdocs.cn/l/cbggfJodHLIz?linkname=mIwpymAQom
|
|
1979
2084
|
*/
|
|
1980
2085
|
async getTopics(t) {
|
|
1981
|
-
const { data: n } = await this.req.get("community/topics",
|
|
2086
|
+
const { data: n } = await this.req.get("community/topics", Dr, t);
|
|
1982
2087
|
return n?.topics || [];
|
|
1983
2088
|
}
|
|
1984
2089
|
/**
|
|
@@ -1987,7 +2092,7 @@ class ta {
|
|
|
1987
2092
|
* https://kdocs.cn/l/cbggfJodHLIz?linkname=Jvw7xMK31K
|
|
1988
2093
|
*/
|
|
1989
2094
|
async getTopic(t, n) {
|
|
1990
|
-
const { data: r, code: a } = await this.req.get("community/topic",
|
|
2095
|
+
const { data: r, code: a } = await this.req.get("community/topic", Ir, {
|
|
1991
2096
|
...n,
|
|
1992
2097
|
params: { topic_id: t }
|
|
1993
2098
|
});
|
|
@@ -2029,7 +2134,7 @@ class ta {
|
|
|
2029
2134
|
* https://kdocs.cn/l/cbggfJodHLIz?linkname=hj1AZy5rcP
|
|
2030
2135
|
*/
|
|
2031
2136
|
async getPost(t, n) {
|
|
2032
|
-
const { data: r, code: a, message: o } = await this.req.get("community/post",
|
|
2137
|
+
const { data: r, code: a, message: o } = await this.req.get("community/post", Ar, {
|
|
2033
2138
|
...n,
|
|
2034
2139
|
params: { post_id: t }
|
|
2035
2140
|
});
|
|
@@ -2047,7 +2152,7 @@ class ta {
|
|
|
2047
2152
|
const { data: r, code: a, message: o } = await this.req.post(
|
|
2048
2153
|
"community/post",
|
|
2049
2154
|
c(t),
|
|
2050
|
-
|
|
2155
|
+
Gr,
|
|
2051
2156
|
n
|
|
2052
2157
|
);
|
|
2053
2158
|
return r ?? {
|
|
@@ -2061,7 +2166,7 @@ class ta {
|
|
|
2061
2166
|
* https://kdocs.cn/l/cbggfJodHLIz?linkname=djKbX7lFdp
|
|
2062
2167
|
*/
|
|
2063
2168
|
async getComments(t, n) {
|
|
2064
|
-
const { data: r, code: a, message: o } = await this.req.get("community/comments",
|
|
2169
|
+
const { data: r, code: a, message: o } = await this.req.get("community/comments", Mr, {
|
|
2065
2170
|
...n,
|
|
2066
2171
|
params: c(t)
|
|
2067
2172
|
});
|
|
@@ -2076,7 +2181,7 @@ class ta {
|
|
|
2076
2181
|
* https://kdocs.cn/l/cbggfJodHLIz?linkname=RIc7oxVGae
|
|
2077
2182
|
*/
|
|
2078
2183
|
async getComment(t, n) {
|
|
2079
|
-
const { data: r, code: a, message: o } = await this.req.get("community/comment",
|
|
2184
|
+
const { data: r, code: a, message: o } = await this.req.get("community/comment", Br, {
|
|
2080
2185
|
...n,
|
|
2081
2186
|
params: { comment_id: t }
|
|
2082
2187
|
});
|
|
@@ -2095,7 +2200,7 @@ class ta {
|
|
|
2095
2200
|
const { data: r, code: a, message: o } = await this.req.post(
|
|
2096
2201
|
"community/comment",
|
|
2097
2202
|
c(t),
|
|
2098
|
-
|
|
2203
|
+
Kr,
|
|
2099
2204
|
n
|
|
2100
2205
|
);
|
|
2101
2206
|
return r ?? {
|
|
@@ -2109,7 +2214,7 @@ class ta {
|
|
|
2109
2214
|
* https://kdocs.cn/l/cbggfJodHLIz?linkname=sVKBbY83MY
|
|
2110
2215
|
*/
|
|
2111
2216
|
async getReplies(t, n) {
|
|
2112
|
-
const { data: r } = await this.req.get("community/replies",
|
|
2217
|
+
const { data: r } = await this.req.get("community/replies", Or, {
|
|
2113
2218
|
...n,
|
|
2114
2219
|
params: c({ max_results: 20, ...t })
|
|
2115
2220
|
});
|
|
@@ -2124,7 +2229,7 @@ class ta {
|
|
|
2124
2229
|
* https://kdocs.cn/l/cbggfJodHLIz?linkname=kxhcSXD3MG
|
|
2125
2230
|
*/
|
|
2126
2231
|
async getReply(t, n) {
|
|
2127
|
-
const { data: r, code: a, message: o } = await this.req.get("community/reply",
|
|
2232
|
+
const { data: r, code: a, message: o } = await this.req.get("community/reply", Nr, {
|
|
2128
2233
|
...n,
|
|
2129
2234
|
params: { reply_id: t }
|
|
2130
2235
|
});
|
|
@@ -2143,7 +2248,7 @@ class ta {
|
|
|
2143
2248
|
const { data: r, code: a, message: o } = await this.req.post(
|
|
2144
2249
|
"community/reply",
|
|
2145
2250
|
c(t),
|
|
2146
|
-
|
|
2251
|
+
Qr,
|
|
2147
2252
|
n
|
|
2148
2253
|
);
|
|
2149
2254
|
return r ?? {
|
|
@@ -2194,7 +2299,7 @@ class ta {
|
|
|
2194
2299
|
*/
|
|
2195
2300
|
async getMediaPresignedUrl(t, n) {
|
|
2196
2301
|
await this.token.autoLogin();
|
|
2197
|
-
const { data: r } = await this.req.get("community/media-presign-url",
|
|
2302
|
+
const { data: r } = await this.req.get("community/media-presign-url", Hr, {
|
|
2198
2303
|
...n,
|
|
2199
2304
|
params: t
|
|
2200
2305
|
});
|
|
@@ -2209,7 +2314,7 @@ class ta {
|
|
|
2209
2314
|
*/
|
|
2210
2315
|
async getNotifications(t, n) {
|
|
2211
2316
|
await this.token.autoLogin();
|
|
2212
|
-
const { data: r } = await this.req.get("community/notifications",
|
|
2317
|
+
const { data: r } = await this.req.get("community/notifications", zr, {
|
|
2213
2318
|
...n,
|
|
2214
2319
|
params: c({ max_results: 20, ...t })
|
|
2215
2320
|
});
|
|
@@ -2227,7 +2332,7 @@ class ta {
|
|
|
2227
2332
|
if (!await this.token.autoLogin()) return null;
|
|
2228
2333
|
const { data: n } = await this.req.get(
|
|
2229
2334
|
"community/unread-notifications-count",
|
|
2230
|
-
|
|
2335
|
+
Jr,
|
|
2231
2336
|
t
|
|
2232
2337
|
);
|
|
2233
2338
|
return n;
|
|
@@ -2243,17 +2348,17 @@ class ta {
|
|
|
2243
2348
|
return r;
|
|
2244
2349
|
}
|
|
2245
2350
|
}
|
|
2246
|
-
const
|
|
2351
|
+
const Zr = s({
|
|
2247
2352
|
nonce_str: e.string(),
|
|
2248
2353
|
timestamp: e.number(),
|
|
2249
2354
|
signature: e.string()
|
|
2250
2355
|
});
|
|
2251
|
-
var
|
|
2356
|
+
var Xr = /* @__PURE__ */ ((i) => (i.RedirectUriDisMatch = "10003", i.AppidError = "10016", i.AuthorizationError = "10015", i.NoRightForScope = "10005", i.Frequently = "10009", i.AppBanded = "10004", i.ShouldFollow = "10006", i.ScopeNull = "10010", i.RedirectUriNull = "10011", i.AppidNull = "10012", i.StateNull = "10013", i))(Xr || {});
|
|
2252
2357
|
function S(i) {
|
|
2253
2358
|
return k(i, "open_id", "union_id", "weixin_token");
|
|
2254
2359
|
}
|
|
2255
2360
|
const K = "wx_login_cache";
|
|
2256
|
-
class
|
|
2361
|
+
class ga {
|
|
2257
2362
|
token;
|
|
2258
2363
|
$appid;
|
|
2259
2364
|
req;
|
|
@@ -2287,7 +2392,7 @@ class na {
|
|
|
2287
2392
|
const t = this.token.storage.get(K);
|
|
2288
2393
|
if (!t)
|
|
2289
2394
|
return null;
|
|
2290
|
-
const n =
|
|
2395
|
+
const n = be(t);
|
|
2291
2396
|
return S(n) ? (this.token.weixinToken = n.weixin_token, await this.token.autoLogin(), n) : null;
|
|
2292
2397
|
}
|
|
2293
2398
|
/**
|
|
@@ -2313,7 +2418,7 @@ class na {
|
|
|
2313
2418
|
const n = await this.getLoginCache();
|
|
2314
2419
|
if (n)
|
|
2315
2420
|
return n;
|
|
2316
|
-
const r = await
|
|
2421
|
+
const r = await fe(), { data: a, code: o, message: g } = await this.req.post(
|
|
2317
2422
|
"weixin/login",
|
|
2318
2423
|
{ code: r, appid: this.appid },
|
|
2319
2424
|
S,
|
|
@@ -2358,12 +2463,12 @@ class na {
|
|
|
2358
2463
|
"replaceState" in history && history.replaceState({}, "", g);
|
|
2359
2464
|
const {
|
|
2360
2465
|
data: p,
|
|
2361
|
-
code:
|
|
2362
|
-
message:
|
|
2466
|
+
code: ce,
|
|
2467
|
+
message: le
|
|
2363
2468
|
} = await this.req.post("weixin/login", { code: r, appid: this.appid }, S, n);
|
|
2364
2469
|
return p && (this.token.weixinToken = p.weixin_token, await this.token.autoLogin()), p ?? {
|
|
2365
|
-
message:
|
|
2366
|
-
error:
|
|
2470
|
+
message: le,
|
|
2471
|
+
error: ce
|
|
2367
2472
|
};
|
|
2368
2473
|
}
|
|
2369
2474
|
/**
|
|
@@ -2393,7 +2498,7 @@ class na {
|
|
|
2393
2498
|
* https://kdocs.cn/l/cf2mO2uRLqh9?linkname=CuWOqxr9Ue
|
|
2394
2499
|
*/
|
|
2395
2500
|
async getJSSDKConfig(t) {
|
|
2396
|
-
const { data: n } = await this.req.get("weixin/offiaccount/jssdk-sign",
|
|
2501
|
+
const { data: n } = await this.req.get("weixin/offiaccount/jssdk-sign", Zr, {
|
|
2397
2502
|
...t,
|
|
2398
2503
|
params: {
|
|
2399
2504
|
appid: this.appid,
|
|
@@ -2409,157 +2514,165 @@ class na {
|
|
|
2409
2514
|
}
|
|
2410
2515
|
}
|
|
2411
2516
|
export {
|
|
2412
|
-
|
|
2413
|
-
|
|
2414
|
-
|
|
2415
|
-
|
|
2416
|
-
|
|
2417
|
-
|
|
2517
|
+
se as AntispamValidator,
|
|
2518
|
+
ta as AuthToken,
|
|
2519
|
+
Nn as CandidateVoteValidator,
|
|
2520
|
+
re as CashbackEngagementDataValidator,
|
|
2521
|
+
kn as ClaimActivationKeyEngagementDataValidator,
|
|
2522
|
+
st as ClaimRewardStatus,
|
|
2418
2523
|
E as ClaimRewardStatusValidator,
|
|
2419
|
-
|
|
2524
|
+
Yn as ClaimedItemValidator,
|
|
2420
2525
|
J as ClubAddressValidator,
|
|
2421
|
-
|
|
2526
|
+
ra as ClubApi,
|
|
2422
2527
|
Z as ClubBenefitSummaryValidator,
|
|
2423
|
-
|
|
2424
|
-
|
|
2425
|
-
|
|
2528
|
+
Ae as ClubBenefitValidator,
|
|
2529
|
+
je as ClubCreditChangeScene,
|
|
2530
|
+
Te as ClubCreditChangeSceneValidator,
|
|
2426
2531
|
Ce as ClubCreditChangeType,
|
|
2427
|
-
|
|
2428
|
-
|
|
2429
|
-
|
|
2430
|
-
|
|
2532
|
+
Re as ClubCreditChangeTypeValidator,
|
|
2533
|
+
Ie as ClubCreditLogValidator,
|
|
2534
|
+
Le as ClubGlobalConfigValidator,
|
|
2535
|
+
qe as ClubItemType,
|
|
2431
2536
|
H as ClubItemTypeValidator,
|
|
2432
|
-
|
|
2537
|
+
Pe as ClubPlayerValidator,
|
|
2433
2538
|
X as ClubProductValidator,
|
|
2434
|
-
|
|
2435
|
-
|
|
2436
|
-
|
|
2539
|
+
xe as ClubRedemptionStatus,
|
|
2540
|
+
Se as ClubRedemptionStatusValidator,
|
|
2541
|
+
De as ClubUserCreditValidator,
|
|
2437
2542
|
Fe as ClubUserProfileValidator,
|
|
2438
|
-
|
|
2543
|
+
Mn as CommentEngagementValidator,
|
|
2439
2544
|
w as CommentValidator,
|
|
2440
|
-
|
|
2441
|
-
|
|
2442
|
-
|
|
2443
|
-
|
|
2444
|
-
|
|
2445
|
-
|
|
2446
|
-
|
|
2447
|
-
|
|
2448
|
-
|
|
2449
|
-
|
|
2450
|
-
|
|
2451
|
-
|
|
2452
|
-
|
|
2453
|
-
|
|
2454
|
-
|
|
2455
|
-
|
|
2456
|
-
|
|
2457
|
-
|
|
2458
|
-
|
|
2459
|
-
|
|
2460
|
-
|
|
2461
|
-
|
|
2462
|
-
|
|
2463
|
-
|
|
2464
|
-
|
|
2465
|
-
|
|
2466
|
-
|
|
2467
|
-
|
|
2468
|
-
gn as
|
|
2469
|
-
|
|
2470
|
-
et as
|
|
2545
|
+
da as CommunityApi,
|
|
2546
|
+
Qn as ConversationValidator,
|
|
2547
|
+
Ye as EngageAccountType,
|
|
2548
|
+
We as EngageAccountTypeValidator,
|
|
2549
|
+
Xn as EngageResponseValidator,
|
|
2550
|
+
Hn as EngageRewardValidator,
|
|
2551
|
+
ua as EventApi,
|
|
2552
|
+
wn as EventConfigValidator,
|
|
2553
|
+
Ct as EventFeatureConfigOfCashbackValidator,
|
|
2554
|
+
jt as EventFeatureConfigOfCheckInValidator,
|
|
2555
|
+
qt as EventFeatureConfigOfClaimActivationKeyValidator,
|
|
2556
|
+
St as EventFeatureConfigOfClaimRewardsValidator,
|
|
2557
|
+
Pt as EventFeatureConfigOfCommentValidator,
|
|
2558
|
+
$t as EventFeatureConfigOfFollowValidator,
|
|
2559
|
+
Dt as EventFeatureConfigOfGiftCodeValidator,
|
|
2560
|
+
At as EventFeatureConfigOfInviteValidator,
|
|
2561
|
+
Ot as EventFeatureConfigOfInvitedRegisterValidator,
|
|
2562
|
+
Ht as EventFeatureConfigOfLotteryDrawValidator,
|
|
2563
|
+
Mt as EventFeatureConfigOfLotteryValidator,
|
|
2564
|
+
Jt as EventFeatureConfigOfPreregisterValidator,
|
|
2565
|
+
Xt as EventFeatureConfigOfQuestValidator,
|
|
2566
|
+
Wt as EventFeatureConfigOfRegisterValidator,
|
|
2567
|
+
tn as EventFeatureConfigOfShareValidator,
|
|
2568
|
+
rn as EventFeatureConfigOfSubscribeValidator,
|
|
2569
|
+
on as EventFeatureConfigOfSurveyValidator,
|
|
2570
|
+
cn as EventFeatureConfigOfTeamValidator,
|
|
2571
|
+
un as EventFeatureConfigOfUgcValidator,
|
|
2572
|
+
bn as EventFeatureConfigOfVote2Validator,
|
|
2573
|
+
gn as EventFeatureConfigOfVoteValidator,
|
|
2574
|
+
fn as EventFeatureConfigValidator,
|
|
2575
|
+
et as EventPeriodType,
|
|
2576
|
+
tt as EventPeriodTypeValidator,
|
|
2471
2577
|
y as EventRewardItemConfigValidator,
|
|
2472
|
-
|
|
2473
|
-
|
|
2474
|
-
|
|
2475
|
-
|
|
2476
|
-
|
|
2477
|
-
|
|
2478
|
-
|
|
2479
|
-
|
|
2578
|
+
Oe as ExtraGameRewardValidator,
|
|
2579
|
+
Ge as ExtraPhysicalShipmentValidator,
|
|
2580
|
+
vt as FeatureRewardValidator,
|
|
2581
|
+
l as FeatureType,
|
|
2582
|
+
nt as FeatureTypeValidator,
|
|
2583
|
+
wr as ForumMode,
|
|
2584
|
+
kr as ForumModeValidator,
|
|
2585
|
+
ie as ForumValidator,
|
|
2480
2586
|
v as GamerItemType,
|
|
2481
2587
|
Y as GamerItemTypeValidator,
|
|
2482
|
-
|
|
2483
|
-
|
|
2484
|
-
|
|
2485
|
-
|
|
2486
|
-
|
|
2487
|
-
|
|
2488
|
-
|
|
2489
|
-
|
|
2588
|
+
ve as Gender,
|
|
2589
|
+
Ve as GenderValidator,
|
|
2590
|
+
vn as GiftCodeEngagementDataValidator,
|
|
2591
|
+
Vn as InviteEngagementDataValidator,
|
|
2592
|
+
dt as LotteryDrawAction,
|
|
2593
|
+
ca as LotteryDrawActionValidator,
|
|
2594
|
+
Tn as LotteryDrawEngagementDataValidator,
|
|
2595
|
+
Cn as LotteryEngagementDataValidator,
|
|
2490
2596
|
f as LotteryTicketStatus,
|
|
2491
|
-
|
|
2597
|
+
ia as LotteryTicketStatusValidator,
|
|
2492
2598
|
_ as NotificationBaseValidator,
|
|
2493
|
-
|
|
2494
|
-
|
|
2495
|
-
|
|
2496
|
-
|
|
2599
|
+
Vr as NotificationCategory,
|
|
2600
|
+
ma as NotificationCategoryValidator,
|
|
2601
|
+
Lr as NotificationCommentReplyValidator,
|
|
2602
|
+
Pr as NotificationCommentValidator,
|
|
2497
2603
|
R as NotificationPayloadCommentValidator,
|
|
2498
2604
|
I as NotificationPayloadPostValidator,
|
|
2499
2605
|
A as NotificationPayloadReplyValidator,
|
|
2500
|
-
|
|
2501
|
-
|
|
2502
|
-
|
|
2503
|
-
|
|
2504
|
-
|
|
2505
|
-
|
|
2606
|
+
Tr as NotificationPayloadSystemValidator,
|
|
2607
|
+
Sr as NotificationPostCommentValidator,
|
|
2608
|
+
xr as NotificationPostValidator,
|
|
2609
|
+
Er as NotificationReplyRepliedValidator,
|
|
2610
|
+
$r as NotificationReplyValidator,
|
|
2611
|
+
qr as NotificationSystemValidator,
|
|
2506
2612
|
m as NotificationType,
|
|
2507
|
-
|
|
2508
|
-
|
|
2509
|
-
|
|
2613
|
+
Cr as NotificationTypeValidator,
|
|
2614
|
+
Ur as NotificationValidator,
|
|
2615
|
+
Ue as PlayerRoleCardValidator,
|
|
2510
2616
|
z as PlayerRoleValidator,
|
|
2511
|
-
|
|
2512
|
-
|
|
2617
|
+
vr as PostStatus,
|
|
2618
|
+
oe as PostStatusValidator,
|
|
2513
2619
|
D as PostValidator,
|
|
2514
|
-
|
|
2515
|
-
|
|
2516
|
-
|
|
2517
|
-
|
|
2620
|
+
qn as PreregisterEngagementDataValidator,
|
|
2621
|
+
jr as PresignedUrlResponseValidator,
|
|
2622
|
+
xn as QuestEngagementDataValidator,
|
|
2623
|
+
rt as QuestObjective,
|
|
2518
2624
|
ee as QuestObjectiveValidator,
|
|
2519
|
-
|
|
2520
|
-
|
|
2521
|
-
|
|
2522
|
-
|
|
2523
|
-
|
|
2524
|
-
|
|
2525
|
-
|
|
2526
|
-
|
|
2527
|
-
|
|
2625
|
+
gt as QuestProgressAlgorithm,
|
|
2626
|
+
pt as QuestProgressAlgorithmValidator,
|
|
2627
|
+
Sn as QuestProgressValidator,
|
|
2628
|
+
na as RedeemParamsValidator,
|
|
2629
|
+
Ne as RedemptionValidator,
|
|
2630
|
+
kt as RegularRewardValidator,
|
|
2631
|
+
Rr as ReplyToValidator,
|
|
2632
|
+
C as ReplyValidator,
|
|
2633
|
+
aa as RewardItemType,
|
|
2528
2634
|
W as RewardItemTypeValidator,
|
|
2529
|
-
|
|
2635
|
+
ct as RewardSource,
|
|
2530
2636
|
$ as RewardSourceValidator,
|
|
2531
2637
|
d as RewardStatus,
|
|
2532
|
-
|
|
2638
|
+
it as RewardStatusSuffix,
|
|
2533
2639
|
te as RewardStatusSuffixValidator,
|
|
2534
|
-
|
|
2535
|
-
|
|
2536
|
-
|
|
2537
|
-
|
|
2538
|
-
|
|
2539
|
-
|
|
2540
|
-
|
|
2541
|
-
|
|
2542
|
-
|
|
2543
|
-
|
|
2544
|
-
|
|
2545
|
-
|
|
2640
|
+
oa as RewardStatusValidator,
|
|
2641
|
+
Kn as RewardValidator,
|
|
2642
|
+
$e as RoleBaseInfoValidator,
|
|
2643
|
+
Ee as ServerBaseInfoValidator,
|
|
2644
|
+
Ln as ShareEngagementDataValidator,
|
|
2645
|
+
En as SurveyEngagementDataValidator,
|
|
2646
|
+
mt as TeamAction,
|
|
2647
|
+
sa as TeamActionValidator,
|
|
2648
|
+
Un as TeamEngagementDataValidator,
|
|
2649
|
+
$n as TeamEngagementValidator,
|
|
2650
|
+
la as TeamMemberValidator,
|
|
2651
|
+
lt as TeamVisibility,
|
|
2546
2652
|
ut as TeamVisibilityValidator,
|
|
2547
|
-
|
|
2548
|
-
|
|
2549
|
-
|
|
2550
|
-
|
|
2551
|
-
|
|
2552
|
-
|
|
2553
|
-
|
|
2554
|
-
|
|
2555
|
-
|
|
2556
|
-
|
|
2557
|
-
|
|
2558
|
-
|
|
2559
|
-
|
|
2560
|
-
|
|
2561
|
-
|
|
2562
|
-
|
|
2563
|
-
|
|
2564
|
-
|
|
2653
|
+
F as TopicValidator,
|
|
2654
|
+
Fn as UgcEngagementDataValidator,
|
|
2655
|
+
Dn as UgcRecordResponseValidator,
|
|
2656
|
+
ht as UgcReviewStatus,
|
|
2657
|
+
ft as UgcReviewStatusValidator,
|
|
2658
|
+
yt as UgcSocialMedia,
|
|
2659
|
+
ne as UgcSocialMediaValidator,
|
|
2660
|
+
In as UgcUploadImageValidator,
|
|
2661
|
+
U as UserEngagementDataValidator,
|
|
2662
|
+
zn as UserEngagementValidator,
|
|
2663
|
+
Zn as UserFeatureStatusValidator,
|
|
2664
|
+
V as UserRewardValidator,
|
|
2665
|
+
Jn as VerifyMobileResultValidator,
|
|
2666
|
+
On as Vote2ClaimRewardsResponseValidator,
|
|
2667
|
+
Gn as Vote2EngagementDataValidator,
|
|
2668
|
+
_t as Vote2RewardType,
|
|
2669
|
+
bt as Vote2RewardTypeValidator,
|
|
2670
|
+
An as VoteEngagementDataValidator,
|
|
2671
|
+
at as VoteOptionSource,
|
|
2672
|
+
ot as VoteOptionSourceValidator,
|
|
2673
|
+
ga as WeixinApi,
|
|
2674
|
+
Pn as WeixinSubscribeEngagementDataValidator,
|
|
2675
|
+
Xr as WeixinWebLoginErrorCode,
|
|
2676
|
+
Bn as ZeroChatGPTDataValidator,
|
|
2677
|
+
Zr as isWeixinSignResponse
|
|
2565
2678
|
};
|