@hfyidu/api 1.0.0
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/README.md +83 -0
- package/dist/ad.cjs +1 -0
- package/dist/ad.d.ts +63 -0
- package/dist/ad.mjs +1 -0
- package/dist/chunks/format-8FicpGOZ.mjs +1 -0
- package/dist/chunks/format-B6De6_fe.cjs +1 -0
- package/dist/chunks/http_api-C5Z7KaOu.mjs +1 -0
- package/dist/chunks/http_api-DJbIR7rm.cjs +1 -0
- package/dist/chunks/index.d-CY_a8XyJ.d.ts +67 -0
- package/dist/chunks/index.d-Dg_AxkIm.d.ts +45 -0
- package/dist/chunks/model-wkm7oInd.d.ts +71 -0
- package/dist/chunks/pay_type-CU-SupTZ.mjs +1 -0
- package/dist/chunks/pay_type-Cvsd8anH.cjs +1 -0
- package/dist/chunks/pay_type-kEENTQQx.d.ts +45 -0
- package/dist/chunks/play_list.dto-DO7NHhKl.d.ts +68 -0
- package/dist/feedback.cjs +1 -0
- package/dist/feedback.d.ts +26 -0
- package/dist/feedback.mjs +1 -0
- package/dist/http.cjs +1 -0
- package/dist/http.d.ts +75 -0
- package/dist/http.mjs +1 -0
- package/dist/index-domain.cjs +1 -0
- package/dist/index-domain.d.ts +25 -0
- package/dist/index-domain.mjs +1 -0
- package/dist/index.cjs +1 -0
- package/dist/index.d.ts +27 -0
- package/dist/index.mjs +1 -0
- package/dist/movies.cjs +1 -0
- package/dist/movies.d.ts +675 -0
- package/dist/movies.mjs +1 -0
- package/dist/novel.cjs +1 -0
- package/dist/novel.d.ts +693 -0
- package/dist/novel.mjs +1 -0
- package/dist/order.cjs +1 -0
- package/dist/order.d.ts +370 -0
- package/dist/order.mjs +1 -0
- package/dist/spread.cjs +1 -0
- package/dist/spread.d.ts +63 -0
- package/dist/spread.mjs +1 -0
- package/dist/system.cjs +1 -0
- package/dist/system.d.ts +157 -0
- package/dist/system.mjs +1 -0
- package/dist/user.cjs +1 -0
- package/dist/user.d.ts +453 -0
- package/dist/user.mjs +1 -0
- package/package.json +104 -0
package/dist/user.d.ts
ADDED
|
@@ -0,0 +1,453 @@
|
|
|
1
|
+
import { b as BaseDto, B as BaseUseCase, c as BaseDomain } from './chunks/index.d-Dg_AxkIm.js';
|
|
2
|
+
import { B as BaseEnumeration, P as PagedQueryParams, a as PaginatorUseCase, b as PagedResultDto } from './chunks/index.d-CY_a8XyJ.js';
|
|
3
|
+
import 'vue';
|
|
4
|
+
|
|
5
|
+
declare class MessageType extends BaseEnumeration {
|
|
6
|
+
static ALL: MessageType;
|
|
7
|
+
static POST: MessageType;
|
|
8
|
+
static FEED: MessageType;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
declare class ResourceType extends BaseEnumeration {
|
|
12
|
+
static readonly DEFAULT: ResourceType;
|
|
13
|
+
static readonly NOVEL: ResourceType;
|
|
14
|
+
static readonly VIDEO: ResourceType;
|
|
15
|
+
static readonly ALL: ResourceType;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
declare class UserSexType extends BaseEnumeration {
|
|
19
|
+
static readonly UNKNOWN: UserSexType;
|
|
20
|
+
static readonly MALE: UserSexType;
|
|
21
|
+
static readonly FEMALE: UserSexType;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
declare class UserAdBenefitDto extends BaseDto {
|
|
25
|
+
id: number;
|
|
26
|
+
uid: number;
|
|
27
|
+
remark: string;
|
|
28
|
+
expiredAt: number;
|
|
29
|
+
surplus: number;
|
|
30
|
+
volume: number;
|
|
31
|
+
resource_type: number;
|
|
32
|
+
bookId: number;
|
|
33
|
+
theatreId: number;
|
|
34
|
+
createdAt: string;
|
|
35
|
+
get resourceType(): ResourceType;
|
|
36
|
+
static get fromJson(): (this: typeof UserAdBenefitDto, json: Record<string, any>) => UserAdBenefitDto;
|
|
37
|
+
static get toList(): (json: any[]) => UserAdBenefitDto[];
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
declare class UserConsumesDto extends BaseDto {
|
|
41
|
+
id: number | string;
|
|
42
|
+
remark: string;
|
|
43
|
+
createdAt: string;
|
|
44
|
+
coins: string;
|
|
45
|
+
coupons: string;
|
|
46
|
+
sourceType: string;
|
|
47
|
+
detailType: string;
|
|
48
|
+
type: string;
|
|
49
|
+
get time(): any;
|
|
50
|
+
get consumesDetail(): string;
|
|
51
|
+
static get fromJson(): (this: typeof UserConsumesDto, json: Record<string, any>) => Readonly<UserConsumesDto>;
|
|
52
|
+
static get toList(): (json: any[]) => UserConsumesDto[];
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
declare class UserFeedbackDto extends BaseDto {
|
|
56
|
+
feedback_id: string;
|
|
57
|
+
static get fromJson(): (this: typeof UserFeedbackDto, json: Record<string, any>) => Readonly<UserFeedbackDto>;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
declare class UserInfoDto extends BaseDto {
|
|
61
|
+
id: string | number;
|
|
62
|
+
openid: string | null;
|
|
63
|
+
password: number | string | null;
|
|
64
|
+
nickname: string;
|
|
65
|
+
avatar: string | null;
|
|
66
|
+
sex: number;
|
|
67
|
+
email: string;
|
|
68
|
+
phone: string | null;
|
|
69
|
+
isRisk: number;
|
|
70
|
+
coins: number;
|
|
71
|
+
coupons: number;
|
|
72
|
+
superExpireDate: string | null;
|
|
73
|
+
superStartDate: string | null;
|
|
74
|
+
totalOrderMoney: string;
|
|
75
|
+
totalOrderNumber: number;
|
|
76
|
+
totalReadTime: number;
|
|
77
|
+
spreadId: number;
|
|
78
|
+
isChildren: boolean;
|
|
79
|
+
childrenPassword: number | string;
|
|
80
|
+
adid: string;
|
|
81
|
+
imei: string;
|
|
82
|
+
oaid: string;
|
|
83
|
+
deviceUserId: string;
|
|
84
|
+
regId: number | string;
|
|
85
|
+
createdAt: string;
|
|
86
|
+
inviterCid: number;
|
|
87
|
+
inviterSpreadId: number;
|
|
88
|
+
inviterTime: number;
|
|
89
|
+
inviterUid: number;
|
|
90
|
+
lastActiveTime: number;
|
|
91
|
+
get amount(): number;
|
|
92
|
+
get cannotPay(): boolean;
|
|
93
|
+
get isVip(): boolean;
|
|
94
|
+
get expiredOn(): number;
|
|
95
|
+
get vipDays(): number;
|
|
96
|
+
get orderMoney(): number;
|
|
97
|
+
get unliveDays(): number;
|
|
98
|
+
get aliveDays(): number;
|
|
99
|
+
get userSexType(): UserSexType;
|
|
100
|
+
static get fromJson(): (this: typeof UserInfoDto, json: Record<string, any>) => UserInfoDto;
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
declare class UserInviteDto extends BaseDto {
|
|
104
|
+
id: string;
|
|
105
|
+
static get fromJson(): (this: typeof UserInviteDto, json: Record<string, any>) => UserInviteDto;
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
declare class UserLoginDto extends BaseDto {
|
|
109
|
+
token: string;
|
|
110
|
+
user: UserInfoDto;
|
|
111
|
+
static get fromJson(): (this: typeof UserLoginDto, json: Record<string, any>) => UserLoginDto;
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
declare class UserMyOrderProductDto extends BaseDto {
|
|
115
|
+
name: string;
|
|
116
|
+
describe: string;
|
|
117
|
+
static get fromJson(): (this: typeof UserMyOrderProductDto, json: Record<string, any>) => UserMyOrderProductDto;
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
declare class UserMyOrderDto extends BaseDto {
|
|
121
|
+
id: string;
|
|
122
|
+
product: UserMyOrderProductDto;
|
|
123
|
+
createdAt: string;
|
|
124
|
+
type: string;
|
|
125
|
+
static get fromJson(): (this: typeof UserMyOrderDto, json: Record<string, any>) => Readonly<UserMyOrderDto>;
|
|
126
|
+
static get toList(): (json: any[]) => UserMyOrderDto[];
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
declare class UserPayBenefitDto extends BaseDto {
|
|
130
|
+
id: number;
|
|
131
|
+
uid: number;
|
|
132
|
+
remark: string;
|
|
133
|
+
expiredAt: number;
|
|
134
|
+
surplus: number;
|
|
135
|
+
volume: number;
|
|
136
|
+
resource_type: number;
|
|
137
|
+
bookId: number;
|
|
138
|
+
theatreId: number;
|
|
139
|
+
createdAt: string;
|
|
140
|
+
type: string;
|
|
141
|
+
get resourceType(): ResourceType;
|
|
142
|
+
static get fromJson(): (this: typeof UserPayBenefitDto, json: Record<string, any>) => UserPayBenefitDto;
|
|
143
|
+
static get toList(): (json: any[]) => UserPayBenefitDto[];
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
type Identity$2 = string | number;
|
|
147
|
+
declare class UserRechargesDto extends BaseDto {
|
|
148
|
+
id: Identity$2;
|
|
149
|
+
remark: string;
|
|
150
|
+
createdAt: string;
|
|
151
|
+
dateOn: string | null;
|
|
152
|
+
sourceType: string;
|
|
153
|
+
detailType: string;
|
|
154
|
+
detailNumber: number;
|
|
155
|
+
type: string;
|
|
156
|
+
get number(): string;
|
|
157
|
+
get time(): string;
|
|
158
|
+
get expired(): string | null;
|
|
159
|
+
static get fromJson(): (this: typeof UserRechargesDto, json: Record<string, any>) => UserRechargesDto;
|
|
160
|
+
static get toList(): (json: any[]) => UserRechargesDto[];
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
declare class UserStateDto extends BaseDto {
|
|
164
|
+
user: UserInfoDto;
|
|
165
|
+
static get fromJson(): (this: typeof UserStateDto, json: Record<string, any>) => UserStateDto;
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
type Identity$1 = number | string;
|
|
169
|
+
declare class UserSubscribeBookDto extends BaseDto {
|
|
170
|
+
id: Identity$1;
|
|
171
|
+
title: string;
|
|
172
|
+
cover: string;
|
|
173
|
+
heat: number;
|
|
174
|
+
status: number;
|
|
175
|
+
static get fromJson(): (this: typeof UserSubscribeBookDto, json: Record<string, any>) => UserSubscribeBookDto;
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
type Identity = number | string;
|
|
179
|
+
declare class UserSubscribeTheatreDto extends BaseDto {
|
|
180
|
+
id: Identity;
|
|
181
|
+
title: string;
|
|
182
|
+
cover: string;
|
|
183
|
+
heat: number;
|
|
184
|
+
status: number;
|
|
185
|
+
static get fromJson(): (this: typeof UserSubscribeTheatreDto, json: Record<string, any>) => UserSubscribeTheatreDto;
|
|
186
|
+
}
|
|
187
|
+
|
|
188
|
+
declare class UserSubscribeDto extends BaseDto {
|
|
189
|
+
id: number;
|
|
190
|
+
videoId: number;
|
|
191
|
+
bookId: number;
|
|
192
|
+
theatre: UserSubscribeTheatreDto;
|
|
193
|
+
book: UserSubscribeBookDto;
|
|
194
|
+
get cover(): string;
|
|
195
|
+
get title(): string;
|
|
196
|
+
get heat(): number;
|
|
197
|
+
get status(): "完集" | "更新中" | "完结";
|
|
198
|
+
static get fromJson(): (this: typeof UserSubscribeDto, json: Record<string, any>) => UserSubscribeDto;
|
|
199
|
+
static get toList(): (json: any[]) => UserSubscribeDto[];
|
|
200
|
+
}
|
|
201
|
+
|
|
202
|
+
declare class UserSystemMessageDto extends BaseDto {
|
|
203
|
+
id: string;
|
|
204
|
+
static get fromJson(): (this: typeof UserSystemMessageDto, json: Record<string, any>) => Readonly<UserSystemMessageDto>;
|
|
205
|
+
static get toList(): (json: any[]) => UserSystemMessageDto[];
|
|
206
|
+
}
|
|
207
|
+
|
|
208
|
+
interface UserAdBenefitQueryParams extends PagedQueryParams {
|
|
209
|
+
id: string | number;
|
|
210
|
+
resource_type: ResourceType['value'];
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
interface UserBindPhoneBodyParams {
|
|
214
|
+
code: string;
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
interface UserBindProviderPhoneBodyParams {
|
|
218
|
+
code: string;
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
type UserChildrenBodyParams = null;
|
|
222
|
+
|
|
223
|
+
interface UserConsumesQueryParams {
|
|
224
|
+
page: number;
|
|
225
|
+
limit: number;
|
|
226
|
+
}
|
|
227
|
+
|
|
228
|
+
interface UserDeleteChildrenPasswordBodyParams {
|
|
229
|
+
password: number | string;
|
|
230
|
+
}
|
|
231
|
+
|
|
232
|
+
interface UserFeedbackBodyParams {
|
|
233
|
+
item_id: string | number;
|
|
234
|
+
content: string;
|
|
235
|
+
phone?: string;
|
|
236
|
+
imgs?: string;
|
|
237
|
+
}
|
|
238
|
+
|
|
239
|
+
type UserInstallBodyParams = null;
|
|
240
|
+
|
|
241
|
+
type UserInviteQueryParams = null;
|
|
242
|
+
|
|
243
|
+
interface UserLoginBodyParams extends LoginWithSpread, LoginWithPhone, LoginWithInvite, DeviceInfo, WechatAuth {
|
|
244
|
+
authorization?: string;
|
|
245
|
+
encrypted_data?: string;
|
|
246
|
+
iv?: string;
|
|
247
|
+
}
|
|
248
|
+
interface LoginWithSpread {
|
|
249
|
+
spread_id?: string | number;
|
|
250
|
+
spread_params?: string;
|
|
251
|
+
source_package_name?: string;
|
|
252
|
+
}
|
|
253
|
+
interface LoginWithPhone {
|
|
254
|
+
phone?: string;
|
|
255
|
+
captcha?: string;
|
|
256
|
+
}
|
|
257
|
+
interface LoginWithInvite {
|
|
258
|
+
inviter_uid?: string | number;
|
|
259
|
+
inviter_spread_id?: string | number;
|
|
260
|
+
inviter_cid?: string | number;
|
|
261
|
+
inviter_time?: string;
|
|
262
|
+
}
|
|
263
|
+
interface DeviceInfo {
|
|
264
|
+
brand_type?: string;
|
|
265
|
+
brand_name?: string;
|
|
266
|
+
app_version?: string;
|
|
267
|
+
reg_id?: string;
|
|
268
|
+
device_oaid?: string;
|
|
269
|
+
device_adid?: string;
|
|
270
|
+
device_imei?: string;
|
|
271
|
+
}
|
|
272
|
+
interface WechatAuth {
|
|
273
|
+
theatre_code?: string;
|
|
274
|
+
wxoa_code?: string;
|
|
275
|
+
wx_code?: string;
|
|
276
|
+
}
|
|
277
|
+
|
|
278
|
+
type UserLogoffBodyParams = null;
|
|
279
|
+
|
|
280
|
+
type UserLogoutBodyParams = null;
|
|
281
|
+
|
|
282
|
+
interface UserMyOrderQueryParams extends PagedQueryParams {
|
|
283
|
+
id: string;
|
|
284
|
+
}
|
|
285
|
+
|
|
286
|
+
interface UserPayBenefitQueryParams extends PagedQueryParams {
|
|
287
|
+
id: string | number;
|
|
288
|
+
resource_type: ResourceType['value'];
|
|
289
|
+
}
|
|
290
|
+
|
|
291
|
+
interface UserRechargesQueryParams {
|
|
292
|
+
page: number;
|
|
293
|
+
limit: number;
|
|
294
|
+
}
|
|
295
|
+
|
|
296
|
+
type UserRemovePhoneBodyParams = null;
|
|
297
|
+
|
|
298
|
+
interface UserRemoveSubscribeBodyParamsBase {
|
|
299
|
+
theatre_id?: string | number;
|
|
300
|
+
book_id?: string | number;
|
|
301
|
+
}
|
|
302
|
+
type UserRemoveSubscribeBodyParams = (UserRemoveSubscribeBodyParamsBase & {
|
|
303
|
+
theatre_id: string | number;
|
|
304
|
+
}) | (UserRemoveSubscribeBodyParamsBase & {
|
|
305
|
+
book_id: string | number;
|
|
306
|
+
});
|
|
307
|
+
|
|
308
|
+
interface UserReportBodyParams {
|
|
309
|
+
action: string;
|
|
310
|
+
ext_json: string;
|
|
311
|
+
}
|
|
312
|
+
|
|
313
|
+
interface UserStateQueryParams {
|
|
314
|
+
}
|
|
315
|
+
|
|
316
|
+
interface UserSubscribeQueryParams extends PagedQueryParams {
|
|
317
|
+
id: string;
|
|
318
|
+
}
|
|
319
|
+
|
|
320
|
+
interface UserSystemMessageQueryParams extends PagedQueryParams {
|
|
321
|
+
type: MessageType['value'];
|
|
322
|
+
}
|
|
323
|
+
|
|
324
|
+
interface UserUpdateProfileBodyParams {
|
|
325
|
+
nickname?: string;
|
|
326
|
+
headimg?: string;
|
|
327
|
+
encrypted_data?: string;
|
|
328
|
+
iv?: string;
|
|
329
|
+
spread_id?: number | string;
|
|
330
|
+
inviter_uid?: number | string;
|
|
331
|
+
inviter_cid?: number | string;
|
|
332
|
+
inviter_time?: string;
|
|
333
|
+
}
|
|
334
|
+
|
|
335
|
+
declare class UserAdBenefitPaginatorUseCase extends PaginatorUseCase<UserAdBenefitQueryParams, UserAdBenefitDto> {
|
|
336
|
+
protected onRun(params: UserAdBenefitQueryParams): Promise<PagedResultDto<UserAdBenefitDto>>;
|
|
337
|
+
}
|
|
338
|
+
|
|
339
|
+
declare class UserBindPhoneUseCase extends BaseUseCase<UserBindPhoneBodyParams, void> {
|
|
340
|
+
protected onRun(params: UserBindPhoneBodyParams): Promise<void>;
|
|
341
|
+
}
|
|
342
|
+
|
|
343
|
+
declare class UserBindProviderPhoneUseCase extends BaseUseCase<UserBindProviderPhoneBodyParams, void> {
|
|
344
|
+
protected onRun(params: UserBindProviderPhoneBodyParams): Promise<void>;
|
|
345
|
+
}
|
|
346
|
+
|
|
347
|
+
declare class UserChildrenUseCase extends BaseUseCase<UserChildrenBodyParams, void> {
|
|
348
|
+
protected onRun(params: UserChildrenBodyParams): Promise<void>;
|
|
349
|
+
}
|
|
350
|
+
|
|
351
|
+
declare class UserConsumesPaginatorUseCase extends PaginatorUseCase<UserConsumesQueryParams, UserConsumesDto> {
|
|
352
|
+
protected onRun(params: UserConsumesQueryParams): Promise<PagedResultDto<UserConsumesDto>>;
|
|
353
|
+
}
|
|
354
|
+
|
|
355
|
+
declare class UserDeleteChildrenPasswordUseCase extends BaseUseCase<UserDeleteChildrenPasswordBodyParams, void> {
|
|
356
|
+
protected onRun(params: UserDeleteChildrenPasswordBodyParams): Promise<void>;
|
|
357
|
+
}
|
|
358
|
+
|
|
359
|
+
declare class UserFeedbackUseCase extends BaseUseCase<UserFeedbackBodyParams, UserFeedbackDto> {
|
|
360
|
+
protected onRun(params: UserFeedbackBodyParams): Promise<UserFeedbackDto>;
|
|
361
|
+
}
|
|
362
|
+
|
|
363
|
+
declare class UserInstallUseCase extends BaseUseCase<UserInstallBodyParams, void> {
|
|
364
|
+
protected onRun(params: UserInstallBodyParams): Promise<void>;
|
|
365
|
+
}
|
|
366
|
+
|
|
367
|
+
declare class UserInviteUseCase extends BaseUseCase<UserInviteQueryParams, UserInviteDto> {
|
|
368
|
+
protected onRun(params: UserInviteQueryParams): Promise<UserInviteDto>;
|
|
369
|
+
}
|
|
370
|
+
|
|
371
|
+
declare class UserLoginUseCase extends BaseUseCase<UserLoginBodyParams, UserLoginDto> {
|
|
372
|
+
protected onRun(params: UserLoginBodyParams): Promise<UserLoginDto>;
|
|
373
|
+
}
|
|
374
|
+
|
|
375
|
+
declare class UserLogoffUseCase extends BaseUseCase<UserLogoffBodyParams, void> {
|
|
376
|
+
protected onRun(params: UserLogoffBodyParams): Promise<void>;
|
|
377
|
+
}
|
|
378
|
+
|
|
379
|
+
declare class UserLogoutUseCase extends BaseUseCase<UserLogoutBodyParams, void> {
|
|
380
|
+
protected onRun(params: UserLogoutBodyParams): Promise<void>;
|
|
381
|
+
}
|
|
382
|
+
|
|
383
|
+
declare class UserMyOrderPaginatorUseCase extends PaginatorUseCase<UserMyOrderQueryParams, UserMyOrderDto> {
|
|
384
|
+
protected onRun(params: UserMyOrderQueryParams): Promise<PagedResultDto<UserMyOrderDto>>;
|
|
385
|
+
}
|
|
386
|
+
|
|
387
|
+
declare class UserPayBenefitPaginatorUseCase extends PaginatorUseCase<UserPayBenefitQueryParams, UserPayBenefitDto> {
|
|
388
|
+
protected onRun(params: UserPayBenefitQueryParams): Promise<PagedResultDto<UserPayBenefitDto>>;
|
|
389
|
+
}
|
|
390
|
+
|
|
391
|
+
declare class UserRechargesPaginatorUseCase extends PaginatorUseCase<UserRechargesQueryParams, UserRechargesDto> {
|
|
392
|
+
protected onRun(params: UserRechargesQueryParams): Promise<PagedResultDto<UserRechargesDto>>;
|
|
393
|
+
}
|
|
394
|
+
|
|
395
|
+
declare class UserRemovePhoneUseCase extends BaseUseCase<UserRemovePhoneBodyParams, void> {
|
|
396
|
+
protected onRun(params: UserRemovePhoneBodyParams): Promise<void>;
|
|
397
|
+
}
|
|
398
|
+
|
|
399
|
+
declare class UserRemoveSubscribeUseCase extends BaseUseCase<UserRemoveSubscribeBodyParams, void> {
|
|
400
|
+
protected onRun(params: UserRemoveSubscribeBodyParams): Promise<void>;
|
|
401
|
+
}
|
|
402
|
+
|
|
403
|
+
declare class UserReportUseCase extends BaseUseCase<UserReportBodyParams, void> {
|
|
404
|
+
protected onRun(params: UserReportBodyParams): Promise<void>;
|
|
405
|
+
}
|
|
406
|
+
|
|
407
|
+
declare class UserStateUseCase extends BaseUseCase<UserStateQueryParams, UserStateDto> {
|
|
408
|
+
protected onRun(params: UserStateQueryParams): Promise<UserStateDto>;
|
|
409
|
+
}
|
|
410
|
+
|
|
411
|
+
declare class UserSubscribePaginatorUseCase extends PaginatorUseCase<UserSubscribeQueryParams, UserSubscribeDto> {
|
|
412
|
+
protected onRun(params: UserSubscribeQueryParams): Promise<PagedResultDto<UserSubscribeDto>>;
|
|
413
|
+
}
|
|
414
|
+
|
|
415
|
+
declare class UserSystemMessagePaginatorUseCase extends PaginatorUseCase<UserSystemMessageQueryParams, UserSystemMessageDto> {
|
|
416
|
+
protected onRun(params: UserSystemMessageQueryParams): Promise<PagedResultDto<UserSystemMessageDto>>;
|
|
417
|
+
}
|
|
418
|
+
|
|
419
|
+
declare class UserUpdateProfileUseCase extends BaseUseCase<UserUpdateProfileBodyParams, void> {
|
|
420
|
+
protected onRun(params: UserUpdateProfileBodyParams): Promise<void>;
|
|
421
|
+
}
|
|
422
|
+
|
|
423
|
+
declare class UserAggregateRoot {
|
|
424
|
+
get login(): UserLoginUseCase;
|
|
425
|
+
get state(): UserStateUseCase;
|
|
426
|
+
get feedback(): UserFeedbackUseCase;
|
|
427
|
+
get consumes(): UserConsumesPaginatorUseCase;
|
|
428
|
+
get recharges(): UserRechargesPaginatorUseCase;
|
|
429
|
+
get myOrder(): UserMyOrderPaginatorUseCase;
|
|
430
|
+
get subscribe(): UserSubscribePaginatorUseCase;
|
|
431
|
+
get logout(): UserLogoutUseCase;
|
|
432
|
+
get logoff(): UserLogoffUseCase;
|
|
433
|
+
get updateProfile(): UserUpdateProfileUseCase;
|
|
434
|
+
get children(): UserChildrenUseCase;
|
|
435
|
+
get deleteChildrenPassword(): UserDeleteChildrenPasswordUseCase;
|
|
436
|
+
get bindPhone(): UserBindPhoneUseCase;
|
|
437
|
+
get bindProviderPhone(): UserBindProviderPhoneUseCase;
|
|
438
|
+
get install(): UserInstallUseCase;
|
|
439
|
+
get adBenefit(): UserAdBenefitPaginatorUseCase;
|
|
440
|
+
get payBenefit(): UserPayBenefitPaginatorUseCase;
|
|
441
|
+
get invite(): UserInviteUseCase;
|
|
442
|
+
get removeSubscribe(): UserRemoveSubscribeUseCase;
|
|
443
|
+
get report(): UserReportUseCase;
|
|
444
|
+
get systemMessage(): UserSystemMessagePaginatorUseCase;
|
|
445
|
+
get removePhone(): UserRemovePhoneUseCase;
|
|
446
|
+
}
|
|
447
|
+
|
|
448
|
+
declare class UserDomain extends BaseDomain {
|
|
449
|
+
static readonly cases: UserAggregateRoot;
|
|
450
|
+
}
|
|
451
|
+
|
|
452
|
+
export { UserAdBenefitDto, UserConsumesDto, UserDomain, UserFeedbackDto, UserInfoDto, UserInviteDto, UserLoginDto, UserMyOrderDto, UserPayBenefitDto, UserRechargesDto, UserStateDto, UserSubscribeDto, UserSystemMessageDto };
|
|
453
|
+
export type { DeviceInfo, LoginWithInvite, LoginWithPhone, LoginWithSpread, UserAdBenefitQueryParams, UserBindPhoneBodyParams, UserBindProviderPhoneBodyParams, UserChildrenBodyParams, UserConsumesQueryParams, UserDeleteChildrenPasswordBodyParams, UserFeedbackBodyParams, UserInstallBodyParams, UserInviteQueryParams, UserLoginBodyParams, UserLogoffBodyParams, UserLogoutBodyParams, UserMyOrderQueryParams, UserPayBenefitQueryParams, UserRechargesQueryParams, UserRemovePhoneBodyParams, UserRemoveSubscribeBodyParams, UserRemoveSubscribeBodyParamsBase, UserReportBodyParams, UserStateQueryParams, UserSubscribeQueryParams, UserSystemMessageQueryParams, UserUpdateProfileBodyParams, WechatAuth };
|
package/dist/user.mjs
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
const _0x2ec2e8=_0x3702;(function(_0x1b0583,_0x4ad7de){const _0x16899c=_0x3702,_0xf71591=_0x1b0583();while(!![]){try{const _0x577083=parseInt(_0x16899c(0x1e0))/0x1+-parseInt(_0x16899c(0x24b))/0x2*(parseInt(_0x16899c(0x211))/0x3)+-parseInt(_0x16899c(0x23b))/0x4+parseInt(_0x16899c(0x1d2))/0x5*(parseInt(_0x16899c(0x1c0))/0x6)+parseInt(_0x16899c(0x1ea))/0x7+parseInt(_0x16899c(0x194))/0x8+-parseInt(_0x16899c(0x1eb))/0x9;if(_0x577083===_0x4ad7de)break;else _0xf71591['push'](_0xf71591['shift']());}catch(_0x4bfaad){_0xf71591['push'](_0xf71591['shift']());}}}(_0x19ae,0x79f17));import{M as _0xd02b5,Z as _0x546600,f as _0x411ed3,G as _0x28d460,L as _0x525e32,I as _0x517cb5,q as _0x1cec43,J as _0x4392de,V as _0x56faf9,h as _0x270583,j as _0x402e42,k,$ as _0x5763c9,Y as _0x3c9be4}from'./chunks/http_api-C5Z7KaOu.mjs';import'vue';function le(_0x40b131){const _0x11a7ef=_0x3702;if(_0x40b131){const _0x2943e1=new Date()['getTime'](),_0x4fdae6=new Date(_0x40b131)[_0x11a7ef(0x1d0)]();if(_0x4fdae6<_0x2943e1)return 0x0;const _0xe7fc8=Math[_0x11a7ef(0x220)](_0x4fdae6-_0x2943e1);return Math[_0x11a7ef(0x207)](_0xe7fc8/(0x3e8*0xe10*0x18));}else return 0x0;}function W(_0x3c9508,_0x27e0f3){const _0x17cba0=_0x3702,_0x3a072c=new Date(_0x3c9508),_0x3c0dc5=new Date(_0x27e0f3)[_0x17cba0(0x1d0)]()-_0x3a072c[_0x17cba0(0x1d0)](),_0x591ca1=0x3e8*0x3c*0x3c*0x18,_0x3f817c=_0x3c0dc5/_0x591ca1;return Math[_0x17cba0(0x220)](Math[_0x17cba0(0x249)](_0x3f817c));}function he(_0xf47d1f,_0x82c338){const _0x2093ef=_0x3702;if(!_0xf47d1f||!_0x82c338)return 0x0;const _0x5f3385=new Date()[_0x2093ef(0x1d0)](),_0xa7d96a=new Date(_0x82c338)[_0x2093ef(0x1d0)]();if(_0xa7d96a<_0x5f3385)return 0x0;const _0x18c6a6=new Date(_0xf47d1f)['getTime']();if(_0x18c6a6>_0xa7d96a)return 0x0;const _0x3a6b66=Math['abs'](_0xa7d96a-_0x18c6a6);return Math['ceil'](_0x3a6b66/(0x3e8*0xe10*0x18));}const U=class extends _0xd02b5{};U[_0x2ec2e8(0x1ab)]=new U(0x1,_0x2ec2e8(0x23f),'\u5267\u5E01'),U[_0x2ec2e8(0x201)]=new U(0x2,_0x2ec2e8(0x1e7),'\u5267\u5238'),U['unlockAll']=new U(0x5,_0x2ec2e8(0x1cf),_0x2ec2e8(0x1f4));let ye=U;const F=class extends _0xd02b5{};F[_0x2ec2e8(0x1b4)]=new F(0x0,_0x2ec2e8(0x203),_0x2ec2e8(0x193)),F[_0x2ec2e8(0x216)]=new F(0x1,'post','\u7CFB\u7EDF\u63A8\u9001'),F[_0x2ec2e8(0x213)]=new F(0x2,_0x2ec2e8(0x1ff),_0x2ec2e8(0x1a7));const A=class extends _0xd02b5{};A[_0x2ec2e8(0x204)]=new A(0x0,_0x2ec2e8(0x198),_0x2ec2e8(0x21f)),A[_0x2ec2e8(0x20d)]=new A(0x1,_0x2ec2e8(0x226),_0x2ec2e8(0x23e)),A[_0x2ec2e8(0x1bd)]=new A(0x2,'video','\u77ED\u5267\u89C2\u770B\u514D\u5E7F\u544A\u7279\u6743'),A['ALL']=new A(0x3,_0x2ec2e8(0x203),_0x2ec2e8(0x19a));let C=A;const B=class extends _0xd02b5{};B[_0x2ec2e8(0x210)]=new B(0x0,_0x2ec2e8(0x1e2),'\u4FDD\u5BC6'),B['MALE']=new B(0x1,_0x2ec2e8(0x1b0),'\u7537\u6027'),B['FEMALE']=new B(0x2,'female','\u5973\u6027');let Z=B;function H(_0x4ea5d8){const _0x26ea18=_0x2ec2e8;_0x4ea5d8??={},_0x546600['call'](this,_0x4ea5d8,'id');const _0xdf2265=new this();return _0xdf2265['id']=_0x4ea5d8['id'],_0xdf2265[_0x26ea18(0x23c)]=_0x4ea5d8['remark']??'',_0xdf2265[_0x26ea18(0x224)]=_0x4ea5d8[_0x26ea18(0x1f2)],_0xdf2265['surplus']=_0x4ea5d8['surplus_value']??0x0,_0xdf2265[_0x26ea18(0x1e7)]=_0x4ea5d8[_0x26ea18(0x1b5)]??0x0,_0xdf2265[_0x26ea18(0x245)]=_0x4ea5d8['resource_type']??0x3,_0xdf2265[_0x26ea18(0x225)]=_0x4ea5d8[_0x26ea18(0x1ee)]??0x0,_0xdf2265['theatreId']=_0x4ea5d8[_0x26ea18(0x22a)]??0x0,_0xdf2265[_0x26ea18(0x1fe)]=_0x4ea5d8[_0x26ea18(0x244)]??_0x26ea18(0x23d),_0xdf2265;}const me=()=>H[_0x2ec2e8(0x218)](v),ve=_0x950b3d=>(_0x950b3d??[])[_0x2ec2e8(0x1ce)](_0x350248=>H[_0x2ec2e8(0x243)](v,_0x350248));function K(_0x3a8178,_0xf57ab0=_0x2ec2e8(0x217)){const _0x19071f=_0x2ec2e8;if(_0xf57ab0===_0x19071f(0x217)){const _0x2b1416=_0x3a8178['getFullYear'](),_0x4e4a09=String(_0x3a8178[_0x19071f(0x1ca)]()+0x1)[_0x19071f(0x1c7)](0x2,'0'),_0x33370e=String(_0x3a8178[_0x19071f(0x1d9)]())['padStart'](0x2,'0');return''+_0x2b1416+_0x4e4a09+_0x33370e;}else return _0x3a8178[_0x19071f(0x1d7)](_0x19071f(0x234))['replace'](/-/g,'');}var ge=Object[_0x2ec2e8(0x20a)],fe=Object['getOwnPropertyDescriptor'],x=(_0xe65da8,_0x56eb,_0xd13501,_0x3fe9c4)=>{const _0x467d2d=_0x2ec2e8;for(var _0x51ad34=_0x3fe9c4>0x1?void 0x0:_0x3fe9c4?fe(_0x56eb,_0xd13501):_0x56eb,_0x52ed76=_0xe65da8[_0x467d2d(0x1fc)]-0x1,_0x577cec;_0x52ed76>=0x0;_0x52ed76--)(_0x577cec=_0xe65da8[_0x52ed76])&&(_0x51ad34=(_0x3fe9c4?_0x577cec(_0x56eb,_0xd13501,_0x51ad34):_0x577cec(_0x51ad34))||_0x51ad34);return _0x3fe9c4&&_0x51ad34&&ge(_0x56eb,_0xd13501,_0x51ad34),_0x51ad34;};let g=class extends _0x411ed3{get[_0x2ec2e8(0x242)](){const _0x4441ea=_0x2ec2e8;return K(new Date(this[_0x4441ea(0x1fe)]));}get[_0x2ec2e8(0x21d)](){const _0x109bf4=_0x2ec2e8;let _0x5d954a='';const _0x8e1be6=Number(this['coins']),_0x49227f=Number(this[_0x109bf4(0x1c2)]),{COIN:_0x528d82,VOLUME:_0x17325a}=ye;return _0x49227f>0x0&&_0x8e1be6>0x0?_0x5d954a+='-\x20'+(_0x8e1be6+_0x49227f)+'('+_0x8e1be6+_0x528d82[_0x109bf4(0x1e5)]+'+'+_0x49227f+_0x17325a[_0x109bf4(0x1e5)]+')':_0x49227f===0x0?_0x5d954a+='-\x20'+_0x8e1be6+_0x528d82[_0x109bf4(0x1e5)]:_0x5d954a+='-\x20'+_0x49227f+_0x17325a['text'],_0x5d954a;}static get[_0x2ec2e8(0x1e1)](){return be();}static get[_0x2ec2e8(0x1ae)](){return we;}};x([_0x28d460()],g[_0x2ec2e8(0x1a8)],'id',0x2),x([_0x525e32()],g[_0x2ec2e8(0x1a8)],_0x2ec2e8(0x23c),0x2),x([_0x517cb5()],g[_0x2ec2e8(0x1a8)],_0x2ec2e8(0x1fe),0x2),x([_0x517cb5()],g[_0x2ec2e8(0x1a8)],'coins',0x2),x([_0x517cb5()],g[_0x2ec2e8(0x1a8)],_0x2ec2e8(0x1c2),0x2),x([_0x517cb5()],g[_0x2ec2e8(0x1a8)],_0x2ec2e8(0x1d1),0x2),x([_0x517cb5()],g[_0x2ec2e8(0x1a8)],_0x2ec2e8(0x20b),0x2),x([_0x525e32()],g['prototype'],_0x2ec2e8(0x1f0),0x2),g=x([_0x1cec43,_0x4392de],g);function Q(_0x11c5f9){const _0x5da765=_0x2ec2e8;_0x11c5f9??={},_0x546600[_0x5da765(0x243)](this,_0x11c5f9,'id');const _0x1f9c03=new this();return _0x1f9c03['id']=_0x11c5f9['id'],_0x1f9c03['remark']=_0x11c5f9[_0x5da765(0x23c)]??'',_0x1f9c03['createdAt']=_0x11c5f9['created_at'],_0x1f9c03[_0x5da765(0x231)]=_0x11c5f9[_0x5da765(0x240)],_0x1f9c03['coupons']=_0x11c5f9[_0x5da765(0x22c)],_0x1f9c03[_0x5da765(0x1d1)]=_0x11c5f9[_0x5da765(0x229)],_0x1f9c03[_0x5da765(0x20b)]=_0x11c5f9['detail_type'],_0x1f9c03[_0x5da765(0x1f0)]=_0x11c5f9['type']??_0x5da765(0x195),Object['freeze'](_0x1f9c03);}const be=()=>Q[_0x2ec2e8(0x218)](g),we=_0x14c168=>(_0x14c168??[])[_0x2ec2e8(0x1ce)](_0x54baed=>Q['call'](g,_0x54baed));var De=Object['defineProperty'],$e=Object[_0x2ec2e8(0x1be)],X=(_0x5e953b,_0x35bae6,_0x47422b,_0x2ada8d)=>{for(var _0x47194c=_0x2ada8d>0x1?void 0x0:_0x2ada8d?$e(_0x35bae6,_0x47422b):_0x35bae6,_0x3a8dfb=_0x5e953b['length']-0x1,_0x47cbae;_0x3a8dfb>=0x0;_0x3a8dfb--)(_0x47cbae=_0x5e953b[_0x3a8dfb])&&(_0x47194c=(_0x2ada8d?_0x47cbae(_0x35bae6,_0x47422b,_0x47194c):_0x47cbae(_0x47194c))||_0x47194c);return _0x2ada8d&&_0x47194c&&De(_0x35bae6,_0x47422b,_0x47194c),_0x47194c;};let L=class extends _0x411ed3{static get[_0x2ec2e8(0x1e1)](){return Te();}};X([_0x28d460()],L[_0x2ec2e8(0x1a8)],_0x2ec2e8(0x1b6),0x2),L=X([_0x1cec43],L);function _e(_0x41a766){const _0x3686ee=_0x2ec2e8;_0x41a766??={},_0x546600[_0x3686ee(0x243)](this,_0x41a766,_0x3686ee(0x1b6));const _0x543768=new this();return _0x543768[_0x3686ee(0x1b6)]=_0x41a766['feedback_id'],Object[_0x3686ee(0x1bb)](_0x543768);}const Te=()=>_e[_0x2ec2e8(0x218)](L);var Ae=Object[_0x2ec2e8(0x20a)],d=(_0x5664f3,_0x3c84ae,_0xa4f1f1,_0x55bfff)=>{const _0x2e11c8=_0x2ec2e8;for(var _0x13f272=void 0x0,_0x9277=_0x5664f3[_0x2e11c8(0x1fc)]-0x1,_0x3a3bee;_0x9277>=0x0;_0x9277--)(_0x3a3bee=_0x5664f3[_0x9277])&&(_0x13f272=_0x3a3bee(_0x3c84ae,_0xa4f1f1,_0x13f272)||_0x13f272);return _0x13f272&&Ae(_0x3c84ae,_0xa4f1f1,_0x13f272),_0x13f272;};class p extends _0x411ed3{get[_0x2ec2e8(0x1c9)](){return this['coins']+this['coupons'];}get[_0x2ec2e8(0x1d4)](){const _0x160e78=_0x2ec2e8;return Number(this[_0x160e78(0x20c)])!==0x1?!0x1:!this[_0x160e78(0x1bc)];}get[_0x2ec2e8(0x21b)](){const _0x2eb2a6=_0x2ec2e8;return this[_0x2eb2a6(0x196)]?new Date(this[_0x2eb2a6(0x196)])[_0x2eb2a6(0x1d0)]()>=new Date()['getTime']():!0x1;}get['expiredOn'](){const _0x4b74bb=_0x2ec2e8;return le(this[_0x4b74bb(0x196)]);}get[_0x2ec2e8(0x1ef)](){const _0x44a837=_0x2ec2e8;return he(this[_0x44a837(0x1ba)],this['superExpireDate']);}get[_0x2ec2e8(0x1fb)](){const _0x2a085e=_0x2ec2e8;return Number(this[_0x2a085e(0x227)]);}get[_0x2ec2e8(0x1f5)](){const _0x272741=_0x2ec2e8;return W(this['lastActiveTime']*0x3e8,new Date()[_0x272741(0x1d0)]());}get[_0x2ec2e8(0x228)](){const _0x473e8b=_0x2ec2e8;return W(new Date(this['createdAt'])[_0x473e8b(0x1d0)](),new Date()['getTime']());}get['userSexType'](){const _0x3ee306=_0x2ec2e8;return Z[_0x3ee306(0x239)](this[_0x3ee306(0x18c)],Z[_0x3ee306(0x210)]);}static get[_0x2ec2e8(0x1e1)](){return Oe();}}d([_0x28d460()],p['prototype'],'id'),d([_0x525e32()],p['prototype'],_0x2ec2e8(0x1f3)),d([_0x525e32()],p[_0x2ec2e8(0x1a8)],'password'),d([_0x525e32()],p[_0x2ec2e8(0x1a8)],'nickname'),d([_0x517cb5(),_0x525e32()],p[_0x2ec2e8(0x1a8)],'avatar'),d([_0x525e32()],p[_0x2ec2e8(0x1a8)],_0x2ec2e8(0x18c)),d([_0x525e32()],p[_0x2ec2e8(0x1a8)],_0x2ec2e8(0x199)),d([_0x525e32()],p[_0x2ec2e8(0x1a8)],'phone'),d([_0x517cb5(),_0x525e32()],p[_0x2ec2e8(0x1a8)],_0x2ec2e8(0x20c)),d([_0x517cb5(),_0x525e32()],p[_0x2ec2e8(0x1a8)],_0x2ec2e8(0x231)),d([_0x517cb5(),_0x525e32()],p[_0x2ec2e8(0x1a8)],_0x2ec2e8(0x1c2)),d([_0x517cb5(),_0x525e32()],p[_0x2ec2e8(0x1a8)],_0x2ec2e8(0x196)),d([_0x517cb5(),_0x525e32()],p[_0x2ec2e8(0x1a8)],_0x2ec2e8(0x1ba)),d([_0x517cb5(),_0x525e32()],p[_0x2ec2e8(0x1a8)],'totalOrderMoney'),d([_0x517cb5(),_0x525e32()],p['prototype'],_0x2ec2e8(0x222)),d([_0x517cb5(),_0x525e32()],p[_0x2ec2e8(0x1a8)],'totalReadTime'),d([_0x517cb5(),_0x525e32()],p[_0x2ec2e8(0x1a8)],_0x2ec2e8(0x1c3)),d([_0x517cb5(),_0x525e32()],p[_0x2ec2e8(0x1a8)],_0x2ec2e8(0x202)),d([_0x517cb5(),_0x525e32()],p[_0x2ec2e8(0x1a8)],_0x2ec2e8(0x1ec)),d([_0x517cb5(),_0x525e32()],p[_0x2ec2e8(0x1a8)],'adid'),d([_0x517cb5(),_0x525e32()],p[_0x2ec2e8(0x1a8)],_0x2ec2e8(0x1b7)),d([_0x517cb5(),_0x525e32()],p[_0x2ec2e8(0x1a8)],'oaid'),d([_0x517cb5(),_0x525e32()],p[_0x2ec2e8(0x1a8)],_0x2ec2e8(0x212)),d([_0x517cb5(),_0x525e32()],p[_0x2ec2e8(0x1a8)],_0x2ec2e8(0x23a)),d([_0x517cb5(),_0x525e32()],p[_0x2ec2e8(0x1a8)],_0x2ec2e8(0x1fe)),d([_0x517cb5(),_0x525e32()],p['prototype'],_0x2ec2e8(0x19e)),d([_0x517cb5(),_0x525e32()],p['prototype'],_0x2ec2e8(0x232)),d([_0x517cb5(),_0x525e32()],p[_0x2ec2e8(0x1a8)],_0x2ec2e8(0x18b)),d([_0x517cb5(),_0x525e32()],p[_0x2ec2e8(0x1a8)],_0x2ec2e8(0x22f)),d([_0x517cb5(),_0x525e32()],p['prototype'],_0x2ec2e8(0x21c));function xe(_0x4a5710){const _0x384bd9=_0x2ec2e8;_0x4a5710??={},_0x546600[_0x384bd9(0x243)](this,_0x4a5710,'id');const _0x84f02b=new this();return _0x84f02b['id']=_0x4a5710['id'],_0x84f02b[_0x384bd9(0x1f3)]=_0x4a5710['openid']??null,_0x84f02b[_0x384bd9(0x248)]=_0x4a5710[_0x384bd9(0x248)]??null,_0x84f02b[_0x384bd9(0x20f)]=_0x4a5710[_0x384bd9(0x20f)]??'',_0x84f02b[_0x384bd9(0x209)]=_0x4a5710[_0x384bd9(0x219)]??null,_0x84f02b[_0x384bd9(0x18c)]=_0x4a5710[_0x384bd9(0x18c)]??0x0,_0x84f02b[_0x384bd9(0x199)]=_0x4a5710[_0x384bd9(0x199)]??'',_0x84f02b[_0x384bd9(0x1bc)]=_0x4a5710[_0x384bd9(0x1bc)]??null,_0x84f02b[_0x384bd9(0x20c)]=_0x4a5710[_0x384bd9(0x1aa)]??0x0,_0x84f02b[_0x384bd9(0x231)]=_0x4a5710[_0x384bd9(0x235)]??0x0,_0x84f02b[_0x384bd9(0x1c2)]=_0x4a5710['theatre_volume']??0x0,_0x84f02b[_0x384bd9(0x196)]=_0x4a5710['super_expire_date']??null,_0x84f02b[_0x384bd9(0x1ba)]=_0x4a5710[_0x384bd9(0x1d8)]??null,_0x84f02b[_0x384bd9(0x227)]=_0x4a5710[_0x384bd9(0x1c1)]??'',_0x84f02b[_0x384bd9(0x222)]=_0x4a5710['total_order_num']??0x0,_0x84f02b[_0x384bd9(0x190)]=_0x4a5710['total_read_time']??0x0,_0x84f02b[_0x384bd9(0x1c3)]=_0x4a5710[_0x384bd9(0x22b)]??0x0,_0x84f02b[_0x384bd9(0x202)]=_0x4a5710[_0x384bd9(0x1ad)]??!0x1,_0x84f02b[_0x384bd9(0x1ec)]=_0x4a5710[_0x384bd9(0x208)]??'',_0x84f02b[_0x384bd9(0x1a1)]=_0x4a5710[_0x384bd9(0x19d)]??'',_0x84f02b['imei']=_0x4a5710[_0x384bd9(0x221)]??'',_0x84f02b[_0x384bd9(0x191)]=_0x4a5710['device_oaid']??'',_0x84f02b['deviceUserId']=_0x4a5710['device_uid']??'',_0x84f02b['regId']=_0x4a5710[_0x384bd9(0x1c8)]??0x0,_0x84f02b[_0x384bd9(0x1fe)]=_0x4a5710[_0x384bd9(0x244)]??_0x384bd9(0x237),_0x84f02b[_0x384bd9(0x19e)]=_0x4a5710[_0x384bd9(0x215)]??0x0,_0x84f02b[_0x384bd9(0x232)]=_0x4a5710['inviter_spread_id']??0x0,_0x84f02b[_0x384bd9(0x18b)]=_0x4a5710[_0x384bd9(0x200)]??0x0,_0x84f02b[_0x384bd9(0x22f)]=_0x4a5710['inviter_uid']??0x0,_0x84f02b[_0x384bd9(0x21c)]=_0x4a5710['last_active_time']??0x0,_0x84f02b;}const Oe=()=>xe[_0x2ec2e8(0x218)](p);var Pe=Object[_0x2ec2e8(0x20a)],ke=(_0x121ed8,_0x57d5c6,_0x17c626,_0x42e467)=>{const _0x4d5f30=_0x2ec2e8;for(var _0x49e701=void 0x0,_0x34003c=_0x121ed8[_0x4d5f30(0x1fc)]-0x1,_0x31f09f;_0x34003c>=0x0;_0x34003c--)(_0x31f09f=_0x121ed8[_0x34003c])&&(_0x49e701=_0x31f09f(_0x57d5c6,_0x17c626,_0x49e701)||_0x49e701);return _0x49e701&&Pe(_0x57d5c6,_0x17c626,_0x49e701),_0x49e701;};class N extends _0x411ed3{static get[_0x2ec2e8(0x1e1)](){return Be();}}ke([_0x28d460()],N['prototype'],'id');function Ue(_0x11b67f){_0x11b67f??={},_0x546600['call'](this,_0x11b67f,'id');const _0x2b2e10=new this();return _0x2b2e10['id']=_0x11b67f['id'],_0x2b2e10;}const Be=()=>Ue[_0x2ec2e8(0x218)](N);var Ee=Object[_0x2ec2e8(0x20a)],ee=(_0x59cb16,_0x1d6e84,_0x2060ba,_0x36131d)=>{const _0x1f7b69=_0x2ec2e8;for(var _0x295051=void 0x0,_0x13afc7=_0x59cb16[_0x1f7b69(0x1fc)]-0x1,_0x36114c;_0x13afc7>=0x0;_0x13afc7--)(_0x36114c=_0x59cb16[_0x13afc7])&&(_0x295051=_0x36114c(_0x1d6e84,_0x2060ba,_0x295051)||_0x295051);return _0x295051&&Ee(_0x1d6e84,_0x2060ba,_0x295051),_0x295051;};class R extends _0x411ed3{static get[_0x2ec2e8(0x1e1)](){return Le();}}ee([_0x28d460()],R[_0x2ec2e8(0x1a8)],_0x2ec2e8(0x1d5)),ee([_0x525e32()],R['prototype'],_0x2ec2e8(0x1d3));function Fe(_0x112b16){const _0x358db7=_0x2ec2e8;_0x112b16??={},_0x546600[_0x358db7(0x243)](this,_0x112b16,'token');const _0x5bab21=new this();return _0x5bab21[_0x358db7(0x1d5)]=_0x112b16[_0x358db7(0x1d5)],_0x5bab21[_0x358db7(0x1d3)]=p[_0x358db7(0x1e1)](_0x112b16[_0x358db7(0x1d3)]),_0x5bab21;}const Le=()=>Fe[_0x2ec2e8(0x218)](R);var Je=Object['defineProperty'],te=(_0x59b9ce,_0x3e0b49,_0x214963,_0x12e1f6)=>{const _0x5e6122=_0x2ec2e8;for(var _0x34b9a2=void 0x0,_0x139aa6=_0x59b9ce[_0x5e6122(0x1fc)]-0x1,_0x1899c9;_0x139aa6>=0x0;_0x139aa6--)(_0x1899c9=_0x59b9ce[_0x139aa6])&&(_0x34b9a2=_0x1899c9(_0x3e0b49,_0x214963,_0x34b9a2)||_0x34b9a2);return _0x34b9a2&&Je(_0x3e0b49,_0x214963,_0x34b9a2),_0x34b9a2;};class G extends _0x411ed3{static get[_0x2ec2e8(0x1e1)](){return je();}}te([_0x517cb5(),_0x525e32()],G[_0x2ec2e8(0x1a8)],_0x2ec2e8(0x1c5)),te([_0x517cb5(),_0x525e32()],G[_0x2ec2e8(0x1a8)],'describe');var qe=Object[_0x2ec2e8(0x20a)],Me=Object['getOwnPropertyDescriptor'],S=(_0x1b5dba,_0x15e4bf,_0x2077f7,_0x33c92a)=>{const _0x3b6471=_0x2ec2e8;for(var _0x3555c0=_0x33c92a>0x1?void 0x0:_0x33c92a?Me(_0x15e4bf,_0x2077f7):_0x15e4bf,_0x3e60f0=_0x1b5dba[_0x3b6471(0x1fc)]-0x1,_0x97e64d;_0x3e60f0>=0x0;_0x3e60f0--)(_0x97e64d=_0x1b5dba[_0x3e60f0])&&(_0x3555c0=(_0x33c92a?_0x97e64d(_0x15e4bf,_0x2077f7,_0x3555c0):_0x97e64d(_0x3555c0))||_0x3555c0);return _0x33c92a&&_0x3555c0&&qe(_0x15e4bf,_0x2077f7,_0x3555c0),_0x3555c0;};let _=class extends _0x411ed3{static get['fromJson'](){return Re();}static get[_0x2ec2e8(0x1ae)](){return Se;}};S([_0x28d460()],_[_0x2ec2e8(0x1a8)],'id',0x2),S([_0x525e32(),_0x517cb5()],_['prototype'],_0x2ec2e8(0x1f6),0x2),S([_0x517cb5()],_[_0x2ec2e8(0x1a8)],_0x2ec2e8(0x1fe),0x2),S([_0x525e32()],_[_0x2ec2e8(0x1a8)],'type',0x2),_=S([_0x1cec43,_0x4392de],_);function re(_0x42a46f){const _0x5b3649=_0x2ec2e8;_0x42a46f??={},_0x546600[_0x5b3649(0x243)](this,_0x42a46f,'id');const _0x17e1df=new this();return _0x17e1df['id']=_0x42a46f['id'],_0x17e1df[_0x5b3649(0x1f6)]=G[_0x5b3649(0x1e1)](_0x42a46f['product_info']),_0x17e1df[_0x5b3649(0x1fe)]=_0x42a46f[_0x5b3649(0x244)],_0x17e1df[_0x5b3649(0x1f0)]=_0x42a46f[_0x5b3649(0x1f0)]??_0x5b3649(0x233),Object[_0x5b3649(0x1bb)](_0x17e1df);}const Re=()=>re['bind'](_),Se=_0x3e89c3=>(_0x3e89c3??[])[_0x2ec2e8(0x1ce)](_0x17daef=>re[_0x2ec2e8(0x243)](_,_0x17daef));function Ie(_0x37bcad){const _0x554353=_0x2ec2e8;_0x37bcad??={};const _0x2a78f0=new this();return _0x2a78f0[_0x554353(0x1c5)]=_0x37bcad['product_name']??'',_0x2a78f0[_0x554353(0x246)]=_0x37bcad[_0x554353(0x1af)]??'',_0x2a78f0;}const je=()=>Ie[_0x2ec2e8(0x218)](G);var Ce=Object[_0x2ec2e8(0x20a)],Ne=Object[_0x2ec2e8(0x1be)],D=(_0x40c548,_0x1da40b,_0x164db5,_0x3e84e9)=>{for(var _0x207f0c=_0x3e84e9>0x1?void 0x0:_0x3e84e9?Ne(_0x1da40b,_0x164db5):_0x1da40b,_0x4d69e2=_0x40c548['length']-0x1,_0x18558f;_0x4d69e2>=0x0;_0x4d69e2--)(_0x18558f=_0x40c548[_0x4d69e2])&&(_0x207f0c=(_0x3e84e9?_0x18558f(_0x1da40b,_0x164db5,_0x207f0c):_0x18558f(_0x207f0c))||_0x207f0c);return _0x3e84e9&&_0x207f0c&&Ce(_0x1da40b,_0x164db5,_0x207f0c),_0x207f0c;};let h=class extends _0x411ed3{get[_0x2ec2e8(0x241)](){const _0x1a6e0f=_0x2ec2e8;return C['find'](this[_0x1a6e0f(0x245)],C['ALL']);}static get[_0x2ec2e8(0x1e1)](){return Ge();}static get[_0x2ec2e8(0x1ae)](){return Ye;}};D([_0x28d460()],h[_0x2ec2e8(0x1a8)],'id',0x2),D([_0x525e32()],h[_0x2ec2e8(0x1a8)],_0x2ec2e8(0x23c),0x2),D([_0x517cb5()],h['prototype'],_0x2ec2e8(0x224),0x2),D([_0x517cb5(),_0x525e32()],h[_0x2ec2e8(0x1a8)],_0x2ec2e8(0x21e),0x2),D([_0x517cb5(),_0x525e32()],h[_0x2ec2e8(0x1a8)],_0x2ec2e8(0x1e7),0x2),D([_0x525e32()],h[_0x2ec2e8(0x1a8)],_0x2ec2e8(0x245),0x2),D([_0x517cb5(),_0x525e32()],h['prototype'],_0x2ec2e8(0x225),0x2),D([_0x517cb5(),_0x525e32()],h[_0x2ec2e8(0x1a8)],_0x2ec2e8(0x20e),0x2),D([_0x517cb5(),_0x525e32()],h[_0x2ec2e8(0x1a8)],_0x2ec2e8(0x1fe),0x2),D([_0x525e32()],h[_0x2ec2e8(0x1a8)],_0x2ec2e8(0x1f0),0x2),h=D([_0x4392de],h);function oe(_0x3d2a30){const _0x5e6010=_0x2ec2e8;_0x3d2a30??={},_0x546600[_0x5e6010(0x243)](this,_0x3d2a30,'id');const _0x5dd971=new this();return _0x5dd971['id']=_0x3d2a30['id'],_0x5dd971['remark']=_0x3d2a30[_0x5e6010(0x23c)]??'',_0x5dd971[_0x5e6010(0x224)]=_0x3d2a30[_0x5e6010(0x1f2)],_0x5dd971['surplus']=_0x3d2a30[_0x5e6010(0x197)]??0x0,_0x5dd971[_0x5e6010(0x1e7)]=_0x3d2a30[_0x5e6010(0x1b5)]??0x0,_0x5dd971['resource_type']=_0x3d2a30[_0x5e6010(0x245)]??0x3,_0x5dd971[_0x5e6010(0x225)]=_0x3d2a30[_0x5e6010(0x1ee)]??0x0,_0x5dd971[_0x5e6010(0x20e)]=_0x3d2a30[_0x5e6010(0x22a)]??0x0,_0x5dd971[_0x5e6010(0x1fe)]=_0x3d2a30['created_at']??_0x5e6010(0x23d),_0x5dd971[_0x5e6010(0x1f0)]=_0x3d2a30['type']??'mybenefit',_0x5dd971;}const Ge=()=>oe[_0x2ec2e8(0x218)](h),Ye=_0x1e2aaf=>(_0x1e2aaf??[])[_0x2ec2e8(0x1ce)](_0xc23135=>oe[_0x2ec2e8(0x243)](h,_0xc23135));var Ve=Object['defineProperty'],ze=Object[_0x2ec2e8(0x1be)],O=(_0x1459b1,_0x1704a3,_0x2ac658,_0x187143)=>{const _0xc91e00=_0x2ec2e8;for(var _0x335fec=_0x187143>0x1?void 0x0:_0x187143?ze(_0x1704a3,_0x2ac658):_0x1704a3,_0xa28fb1=_0x1459b1[_0xc91e00(0x1fc)]-0x1,_0x2b6665;_0xa28fb1>=0x0;_0xa28fb1--)(_0x2b6665=_0x1459b1[_0xa28fb1])&&(_0x335fec=(_0x187143?_0x2b6665(_0x1704a3,_0x2ac658,_0x335fec):_0x2b6665(_0x335fec))||_0x335fec);return _0x187143&&_0x335fec&&Ve(_0x1704a3,_0x2ac658,_0x335fec),_0x335fec;};let f=class extends _0x411ed3{get[_0x2ec2e8(0x223)](){const _0x49b99b=_0x2ec2e8;return Number(this[_0x49b99b(0x20b)])===0x2?'+'+this['detailNumber']+'看券':'+'+this[_0x49b99b(0x1b8)]+'看币';}get[_0x2ec2e8(0x242)](){return K(new Date(this['createdAt']));}get[_0x2ec2e8(0x19f)](){const _0x4677d0=_0x2ec2e8;if(!this[_0x4677d0(0x1a9)])return null;const _0x321d03=new Date()[_0x4677d0(0x1d0)](),_0xa3f10a=new Date(this[_0x4677d0(0x1a9)]);return _0xa3f10a['getTime']()-_0x321d03>0x0?'在'+K(_0xa3f10a)+'过期':'\u5DF2\u8FC7\u671F';}static get[_0x2ec2e8(0x1e1)](){return Ke();}static get['toList'](){return We;}};O([_0x28d460()],f['prototype'],'id',0x2),O([_0x525e32()],f[_0x2ec2e8(0x1a8)],_0x2ec2e8(0x23c),0x2),O([_0x517cb5()],f[_0x2ec2e8(0x1a8)],_0x2ec2e8(0x1fe),0x2),O([_0x517cb5(),_0x525e32()],f['prototype'],_0x2ec2e8(0x1a9),0x2),O([_0x517cb5()],f['prototype'],_0x2ec2e8(0x1d1),0x2),O([_0x517cb5()],f[_0x2ec2e8(0x1a8)],_0x2ec2e8(0x20b),0x2),O([_0x517cb5(),_0x525e32()],f[_0x2ec2e8(0x1a8)],'detailNumber',0x2),O([_0x525e32()],f[_0x2ec2e8(0x1a8)],_0x2ec2e8(0x1f0),0x2),f=O([_0x4392de],f);function se(_0x5f2b8f){const _0xfb019b=_0x2ec2e8;_0x5f2b8f??={},_0x546600[_0xfb019b(0x243)](this,_0x5f2b8f,'id');const _0x29cec7=new this();return _0x29cec7['id']=_0x5f2b8f['id'],_0x29cec7[_0xfb019b(0x23c)]=_0x5f2b8f[_0xfb019b(0x23c)]??'',_0x29cec7[_0xfb019b(0x1fe)]=_0x5f2b8f[_0xfb019b(0x244)],_0x29cec7[_0xfb019b(0x1a9)]=_0x5f2b8f[_0xfb019b(0x22d)]??null,_0x29cec7[_0xfb019b(0x1d1)]=_0x5f2b8f['source_type'],_0x29cec7[_0xfb019b(0x20b)]=_0x5f2b8f[_0xfb019b(0x1c4)],_0x29cec7[_0xfb019b(0x1b8)]=_0x5f2b8f[_0xfb019b(0x1f9)]??0x0,_0x29cec7[_0xfb019b(0x1f0)]=_0x5f2b8f[_0xfb019b(0x1f0)]??_0xfb019b(0x1cd),_0x29cec7;}const Ke=()=>se[_0x2ec2e8(0x218)](f),We=_0x2fb570=>(_0x2fb570??[])['map'](_0x5e9302=>se[_0x2ec2e8(0x243)](f,_0x5e9302));var Ze=Object[_0x2ec2e8(0x20a)],He=(_0x379350,_0x15274f,_0x186570,_0x19aa44)=>{for(var _0xf6d2ee=void 0x0,_0x5197be=_0x379350['length']-0x1,_0x2b95d9;_0x5197be>=0x0;_0x5197be--)(_0x2b95d9=_0x379350[_0x5197be])&&(_0xf6d2ee=_0x2b95d9(_0x15274f,_0x186570,_0xf6d2ee)||_0xf6d2ee);return _0xf6d2ee&&Ze(_0x15274f,_0x186570,_0xf6d2ee),_0xf6d2ee;};class Y extends _0x411ed3{static get[_0x2ec2e8(0x1e1)](){return Xe();}}He([_0x525e32()],Y['prototype'],'user');function Qe(_0x40783c){const _0x35e61=_0x2ec2e8;_0x40783c??={};const _0x5c2608=new this();return _0x5c2608['user']=p[_0x35e61(0x1e1)](_0x40783c[_0x35e61(0x1d3)]),_0x5c2608;}const Xe=()=>Qe[_0x2ec2e8(0x218)](Y);var et=Object[_0x2ec2e8(0x20a)],V=(_0x9c142d,_0x363c56,_0x206fdf,_0x3127fd)=>{const _0x1ea9de=_0x2ec2e8;for(var _0x463a43=void 0x0,_0x459595=_0x9c142d[_0x1ea9de(0x1fc)]-0x1,_0x4889c1;_0x459595>=0x0;_0x459595--)(_0x4889c1=_0x9c142d[_0x459595])&&(_0x463a43=_0x4889c1(_0x363c56,_0x206fdf,_0x463a43)||_0x463a43);return _0x463a43&&et(_0x363c56,_0x206fdf,_0x463a43),_0x463a43;};class J extends _0x411ed3{static get[_0x2ec2e8(0x1e1)](){return at();}}V([_0x525e32(),_0x517cb5()],J[_0x2ec2e8(0x1a8)],_0x2ec2e8(0x236)),V([_0x525e32(),_0x517cb5()],J['prototype'],_0x2ec2e8(0x1fa)),V([_0x525e32(),_0x517cb5()],J['prototype'],_0x2ec2e8(0x1e9)),V([_0x525e32(),_0x517cb5()],J[_0x2ec2e8(0x1a8)],_0x2ec2e8(0x1e4));var tt=Object[_0x2ec2e8(0x20a)],z=(_0x5ab56b,_0x1a2d9f,_0xf3c4b5,_0x48c398)=>{const _0x405328=_0x2ec2e8;for(var _0x280673=void 0x0,_0x58b735=_0x5ab56b[_0x405328(0x1fc)]-0x1,_0x5c060e;_0x58b735>=0x0;_0x58b735--)(_0x5c060e=_0x5ab56b[_0x58b735])&&(_0x280673=_0x5c060e(_0x1a2d9f,_0xf3c4b5,_0x280673)||_0x280673);return _0x280673&&tt(_0x1a2d9f,_0xf3c4b5,_0x280673),_0x280673;};class q extends _0x411ed3{static get['fromJson'](){return pt();}}z([_0x525e32()],q['prototype'],_0x2ec2e8(0x236)),z([_0x525e32(),_0x517cb5()],q['prototype'],_0x2ec2e8(0x1fa)),z([_0x525e32()],q[_0x2ec2e8(0x1a8)],_0x2ec2e8(0x1e9)),z([_0x525e32(),_0x517cb5()],q['prototype'],_0x2ec2e8(0x1e4));var rt=Object[_0x2ec2e8(0x20a)],ot=Object[_0x2ec2e8(0x1be)],M=(_0x3ce02f,_0x2fac18,_0x49f5e0,_0x50670a)=>{const _0x1dca4f=_0x2ec2e8;for(var _0x251176=_0x50670a>0x1?void 0x0:_0x50670a?ot(_0x2fac18,_0x49f5e0):_0x2fac18,_0x25bc49=_0x3ce02f[_0x1dca4f(0x1fc)]-0x1,_0x480abf;_0x25bc49>=0x0;_0x25bc49--)(_0x480abf=_0x3ce02f[_0x25bc49])&&(_0x251176=(_0x50670a?_0x480abf(_0x2fac18,_0x49f5e0,_0x251176):_0x480abf(_0x251176))||_0x251176);return _0x50670a&&_0x251176&&rt(_0x2fac18,_0x49f5e0,_0x251176),_0x251176;};let $=class extends _0x411ed3{get[_0x2ec2e8(0x1fa)](){const _0x1de4f8=_0x2ec2e8;return this[_0x1de4f8(0x1a5)]['cover']||this[_0x1de4f8(0x1df)][_0x1de4f8(0x1fa)];}get[_0x2ec2e8(0x236)](){const _0x152c4c=_0x2ec2e8;return this['theatre'][_0x152c4c(0x236)]||this[_0x152c4c(0x1df)]['title'];}get['heat'](){const _0x5f02aa=_0x2ec2e8;return this['theatre'][_0x5f02aa(0x1e9)]||this['book'][_0x5f02aa(0x1e9)];}get['status'](){const _0x3f874c=_0x2ec2e8;return this[_0x3f874c(0x205)]?this[_0x3f874c(0x1a5)][_0x3f874c(0x1e4)]===0x2?'\u5B8C\u96C6':_0x3f874c(0x1a2):this[_0x3f874c(0x1df)][_0x3f874c(0x1e4)]===0x2?'\u5B8C\u7ED3':'\u66F4\u65B0\u4E2D';}static get['fromJson'](){return st();}static get[_0x2ec2e8(0x1ae)](){return nt;}};M([_0x28d460()],$[_0x2ec2e8(0x1a8)],'id',0x2),M([_0x525e32(),_0x517cb5()],$[_0x2ec2e8(0x1a8)],_0x2ec2e8(0x205),0x2),M([_0x525e32(),_0x517cb5()],$[_0x2ec2e8(0x1a8)],_0x2ec2e8(0x225),0x2),M([_0x525e32()],$[_0x2ec2e8(0x1a8)],_0x2ec2e8(0x1a5),0x2),M([_0x525e32()],$[_0x2ec2e8(0x1a8)],_0x2ec2e8(0x1df),0x2),$=M([_0x4392de],$);function ne(_0xcd111f){const _0x1b53cf=_0x2ec2e8;_0xcd111f??={},_0x546600['call'](this,_0xcd111f,'id');const _0x27bf9e=new this();return _0x27bf9e['id']=_0xcd111f['id'],_0x27bf9e[_0x1b53cf(0x205)]=_0xcd111f[_0x1b53cf(0x22a)]??0x0,_0x27bf9e[_0x1b53cf(0x225)]=_0xcd111f[_0x1b53cf(0x1ee)]??0x0,_0x27bf9e[_0x1b53cf(0x1a5)]=q[_0x1b53cf(0x1e1)](_0xcd111f[_0x1b53cf(0x1a5)]),_0x27bf9e[_0x1b53cf(0x1df)]=J[_0x1b53cf(0x1e1)](_0xcd111f[_0x1b53cf(0x1df)]),_0x27bf9e;}const st=()=>ne[_0x2ec2e8(0x218)]($),nt=_0x1a4fc7=>(_0x1a4fc7??[])[_0x2ec2e8(0x1ce)](_0x54906a=>ne[_0x2ec2e8(0x243)]($,_0x54906a));function it(_0x2738bb){const _0x18e2c6=_0x2ec2e8;_0x2738bb??={};const _0x3b24c2=new this();return _0x3b24c2[_0x18e2c6(0x236)]=_0x2738bb[_0x18e2c6(0x18e)]??'',_0x3b24c2[_0x18e2c6(0x1fa)]=_0x2738bb[_0x18e2c6(0x1da)]??'',_0x3b24c2['heat']=_0x2738bb[_0x18e2c6(0x230)]??0x50,_0x3b24c2[_0x18e2c6(0x1e4)]=_0x2738bb[_0x18e2c6(0x19c)]??0x2,_0x3b24c2;}const at=()=>it['bind'](J);function ut(_0x120e4b){const _0x10100a=_0x2ec2e8;_0x120e4b??={};const _0x489434=new this();return _0x489434[_0x10100a(0x236)]=_0x120e4b[_0x10100a(0x236)]??'',_0x489434[_0x10100a(0x1fa)]=_0x120e4b[_0x10100a(0x247)]??'',_0x489434[_0x10100a(0x1e9)]=_0x120e4b[_0x10100a(0x1e9)]??0x50,_0x489434['status']=_0x120e4b[_0x10100a(0x19c)]??0x2,_0x489434;}const pt=()=>ut[_0x2ec2e8(0x218)](q);var dt=Object[_0x2ec2e8(0x20a)],ct=Object['getOwnPropertyDescriptor'],ie=(_0x498ff0,_0xe97c1e,_0x62c246,_0x5c3985)=>{const _0x3b2f2e=_0x2ec2e8;for(var _0x375e25=_0x5c3985>0x1?void 0x0:_0x5c3985?ct(_0xe97c1e,_0x62c246):_0xe97c1e,_0x5d7b29=_0x498ff0[_0x3b2f2e(0x1fc)]-0x1,_0x56e5e0;_0x5d7b29>=0x0;_0x5d7b29--)(_0x56e5e0=_0x498ff0[_0x5d7b29])&&(_0x375e25=(_0x5c3985?_0x56e5e0(_0xe97c1e,_0x62c246,_0x375e25):_0x56e5e0(_0x375e25))||_0x375e25);return _0x5c3985&&_0x375e25&&dt(_0xe97c1e,_0x62c246,_0x375e25),_0x375e25;};let E=class extends _0x411ed3{static get[_0x2ec2e8(0x1e1)](){return lt();}static get[_0x2ec2e8(0x1ae)](){return ht;}};ie([_0x28d460()],E['prototype'],'id',0x2),E=ie([_0x1cec43,_0x4392de],E);function ae(_0x899c56){const _0x5461a6=_0x2ec2e8;_0x899c56??={},_0x546600['call'](this,_0x899c56,'id');const _0x13ede5=new this();return _0x13ede5['id']=_0x899c56['id'],Object[_0x5461a6(0x1bb)](_0x13ede5);}function _0x19ae(){const _0x135c19=['ywjZ','zgv2AwnLx2LTzwK','Dg90ywXpCMrLCK51BwjLCG','BNvTyMvY','zxHWAxjLzef0','yM9VA0LK','BM92zwW','Dg90ywXpCMrLCK1VBMv5','ywXPDMveyxLZ','C291CMnLx3r5Cgu','DgHLyxrYzv9Pza','C3bYzwfKx2LK','DgHLyxrYzv92B2X1Bwu','zgf0zv9VBG','y29UC3vTzxm','Aw52AxrLCLvPza','C2nVCMu','y29PBNm','Aw52AxrLCLnWCMvHzeLK','BxLVCMrLCG','zw4Tq0e','yMfSyw5Jzv9JB2LU','DgL0Bgu','mJK5os0XmI0ZmsaYmZO1otO1oq','ywrKlwrLC2S','zMLUza','CMvNswq','mJGWode1mNjPvK9Pvq','CMvTyxjR','mJa5os0XmI0Zmq','5Bcp6k+06zIf6k+75ywn5BM/5zgk54M55P2d','y29PBG','DgHLyxrYzv9JB2LU','CMvZB3vYy2vuExbL','DgLTzq','y2fSBa','y3jLyxrLzf9HDa','CMvZB3vYy2vFDhLWzq','zgvZy3jPyMu','y292zxjFDxjS','CgfZC3DVCMq','CM91BMq','C3LZDgvTtxnN','ntiYntjYuuHhsKS','Aw52AxrLCLrPBwu','C2v4','Ahr0CefWAq','yM9VA19Uyw1L','Cgf0Aej1AwXKzxi','Dg90ywXszwfKvgLTzq','B2fPza','y2fZzxm','5OMa5PYj56Uz5yAf5l+H','ndy2odCZnK5JAMvgBG','BxLJB25ZDw1LCW','C3vWzxjfEhbPCMveyxrL','C3vYCgX1C192ywX1zq','zgvMyxvSDa','zw1HAwW','6ycA55sO5ywn5BM/5zgk54M55P2d','CMvWB3j0','DxbKyxrLx3n0yxr1CW','zgv2AwnLx2fKAwq','Aw52AxrLCKnPza','zxHWAxjLza','CMvTB3zLugHVBMu','ywrPza','5PU05PAW5lIT','ywn0Aw9Utw9UAxrVCG','Bg9NAw4','DgHLyxrYzq','yMLUzfbOB25L','5zUE5Asn55sO5OI3','ChjVDg90ExbL','zgf0zu9U','AxnFCMLZAW','q09jtG','CMvTB3zLu3vIC2nYAwjL','AxnFy2HPBgrYzw4','Dg9mAxn0','ChjVzhvJDf9KzxnJCMLIzq','BwfSzq','Aw5MBW','yMLUzfbYB3zPzgvYugHVBMu','Bg9NB2zM','quXm','DM9SDw1Lx3zHBhvL','zMvLzgjHy2TFAwq','Aw1LAq','zgv0ywLStNvTyMvY','C3rHDgu','C3vWzxjtDgfYDerHDgu','zNjLzxPL','CgHVBMu','vKLeru8','z2v0t3DUuhjVCgvYDhLezxnJCMLWDg9Y','C3LZDgvTtwvZC2fNzq','mte0nJb1qNLIsfO','Dg90ywXFB3jKzxjFyw1VDw50','y291Cg9UCW','C3bYzwfKswq','zgv0ywLSx3r5Cgu','BMfTzq','CMvZB2X2zq','CgfKu3rHCNq','CMvNx2LK','yw1VDw50','z2v0tw9UDgG','DxbKyxrLuhjVzMLSzq','Aw5ZDgfSBa','BxLJAgfYz2u','BwfW','Dw5SB2nR','z2v0vgLTzq','C291CMnLvhLWzq','mta1nxPYugzMAW','DxnLCG','y2fUBM90ugf5','Dg9Rzw4','CMvXDwvZDa','Dg9mB2nHBgveyxrLu3rYAw5N','C3vWzxjFC3rHCNrFzgf0zq','z2v0rgf0zq','yM9VA19JB3zLCG','B25sDw4','C3vIC2nYAwjL','BxLpCMrLCG','Cgf5qMvUzwzPDa','yM9VAW','mJq5nZK3rNnfy0zy','zNjVBuPZB24','Dw5RBM93BG','zgvSzxrLq2HPBgrYzw5qyxnZD29Yza','C3rHDhvZ','Dgv4Da','r0vu','DM9SDw1L','CMvJAgfYz2vZ','AgvHDa','ndiWmte3nM1kEKjSuq','mti0nZKWnhbrAwTrDG','y2HPBgrYzw5qyxnZD29Yza','ywrczw5LzML0','yM9VA19Pza','DMLWrgf5CW','DhLWzq','Bg9NB3v0','BgLTAxrFDgLTzq','B3bLBMLK','6kEJ6zsb5ywO6zUg','Dw5SAxzLrgf5CW','ChjVzhvJDa','revmrvrf','Aw52AxrL','zgv0ywLSx251BwjLCG','y292zxi','B3jKzxjnB25LEq','BgvUz3rO','ufvu','y3jLyxrLzef0','zMvLza','Aw52AxrLCL90Aw1L','vK9mvu1f','AxndAgLSzhjLBG','ywXS','revgqvvmva','DMLKzw9jza','zMvLzgjHy2S','y2vPBa','y2HPBgrYzw5FCgfZC3DVCMq','yxzHDgfY','zgvMAw5LuhjVCgvYDhK','zgv0ywLSvhLWzq','AxnsAxnR','tK9wruW','DgHLyxrYzuLK','BMLJA25HBwu','vu5ltK9xtG','ntDxBwrjEvO','zgv2AwnLvxnLCKLK','rKvfra','Cgf5l2vXDwL0AwvZ','Aw52AxrLCL9JAwq','ue9tva','wvLzwu1nreq','yMLUza','AgvHzgLTzW','y2HPBgrYzw4','AxnwAxa','BgfZDefJDgL2zvrPBwu','y29UC3vTzxnezxrHAwW','C3vYCgX1CW','5PYQ5OYh5A6A5PIV5Bcp6k+06l+y5PIV55+T5yMN5ywn5BM/5zgk54M55P2d'];_0x19ae=function(){return _0x135c19;};return _0x19ae();}const lt=()=>ae['bind'](E),ht=_0x56750d=>(_0x56750d??[])[_0x2ec2e8(0x1ce)](_0x1c7774=>ae[_0x2ec2e8(0x243)](E,_0x1c7774));function _0x3702(_0x3ac59a,_0x43592e){_0x3ac59a=_0x3ac59a-0x18b;const _0x19aedf=_0x19ae();let _0x37025e=_0x19aedf[_0x3ac59a];if(_0x3702['UKYEOW']===undefined){var _0x4eaa40=function(_0x12a228){const _0x9ddb0d='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+/=';let _0xd02b5='',_0x546600='';for(let _0x411ed3=0x0,_0x28d460,_0x525e32,_0x517cb5=0x0;_0x525e32=_0x12a228['charAt'](_0x517cb5++);~_0x525e32&&(_0x28d460=_0x411ed3%0x4?_0x28d460*0x40+_0x525e32:_0x525e32,_0x411ed3++%0x4)?_0xd02b5+=String['fromCharCode'](0xff&_0x28d460>>(-0x2*_0x411ed3&0x6)):0x0){_0x525e32=_0x9ddb0d['indexOf'](_0x525e32);}for(let _0x1cec43=0x0,_0x4392de=_0xd02b5['length'];_0x1cec43<_0x4392de;_0x1cec43++){_0x546600+='%'+('00'+_0xd02b5['charCodeAt'](_0x1cec43)['toString'](0x10))['slice'](-0x2);}return decodeURIComponent(_0x546600);};_0x3702['HgjOUj']=_0x4eaa40,_0x3702['ZhyWUz']={},_0x3702['UKYEOW']=!![];}const _0x1d2fde=_0x19aedf[0x0],_0x3fa3f0=_0x3ac59a+_0x1d2fde,_0x56796a=_0x3702['ZhyWUz'][_0x3fa3f0];return!_0x56796a?(_0x37025e=_0x3702['HgjOUj'](_0x37025e),_0x3702['ZhyWUz'][_0x3fa3f0]=_0x37025e):_0x37025e=_0x56796a,_0x37025e;}var yt=Object[_0x2ec2e8(0x20a)],mt=Object[_0x2ec2e8(0x1be)],T=(_0x45a424,_0x157c31,_0x5e50af,_0x4b22ed)=>{const _0x3637a6=_0x2ec2e8;for(var _0x38f621=_0x4b22ed>0x1?void 0x0:_0x4b22ed?mt(_0x157c31,_0x5e50af):_0x157c31,_0x41837a=_0x45a424[_0x3637a6(0x1fc)]-0x1,_0x3eeee1;_0x41837a>=0x0;_0x41837a--)(_0x3eeee1=_0x45a424[_0x41837a])&&(_0x38f621=(_0x4b22ed?_0x3eeee1(_0x157c31,_0x5e50af,_0x38f621):_0x3eeee1(_0x38f621))||_0x38f621);return _0x4b22ed&&_0x38f621&&yt(_0x157c31,_0x5e50af,_0x38f621),_0x38f621;};let v=class extends _0x411ed3{get[_0x2ec2e8(0x241)](){const _0x15e3d7=_0x2ec2e8;return C[_0x15e3d7(0x239)](this[_0x15e3d7(0x245)],C[_0x15e3d7(0x1b4)]);}static get[_0x2ec2e8(0x1e1)](){return me();}static get[_0x2ec2e8(0x1ae)](){return ve;}};T([_0x28d460()],v[_0x2ec2e8(0x1a8)],'id',0x2),T([_0x525e32()],v[_0x2ec2e8(0x1a8)],_0x2ec2e8(0x23c),0x2),T([_0x517cb5()],v[_0x2ec2e8(0x1a8)],_0x2ec2e8(0x224),0x2),T([_0x517cb5(),_0x525e32()],v[_0x2ec2e8(0x1a8)],'surplus',0x2),T([_0x517cb5(),_0x525e32()],v[_0x2ec2e8(0x1a8)],_0x2ec2e8(0x1e7),0x2),T([_0x525e32()],v[_0x2ec2e8(0x1a8)],'resource_type',0x2),T([_0x517cb5(),_0x525e32()],v[_0x2ec2e8(0x1a8)],_0x2ec2e8(0x225),0x2),T([_0x517cb5(),_0x525e32()],v[_0x2ec2e8(0x1a8)],'theatreId',0x2),T([_0x517cb5(),_0x525e32()],v[_0x2ec2e8(0x1a8)],_0x2ec2e8(0x1fe),0x2),v=T([_0x4392de],v);class vt extends _0x56faf9{constructor(){super(_0x270583,'user');}async[_0x2ec2e8(0x1a4)](_0x2d3087){const _0x5b1df0=_0x2ec2e8;return await this[_0x5b1df0(0x18d)][_0x5b1df0(0x1d6)]({'url':this[_0x5b1df0(0x18f)][_0x5b1df0(0x1c6)](_0x5b1df0(0x1a4)),'method':_0x402e42[_0x5b1df0(0x216)],'body':_0x2d3087,'formatter':R[_0x5b1df0(0x1e1)]});}async[_0x2ec2e8(0x1b9)](_0x269f13){const _0x1b4876=_0x2ec2e8;return await this['httpApi'][_0x1b4876(0x1d6)]({'url':this[_0x1b4876(0x18f)]['resolve'](_0x1b4876(0x1b9)),'method':_0x402e42[_0x1b4876(0x1e6)],'query':_0x269f13,'formatter':Y[_0x1b4876(0x1e1)]});}async[_0x2ec2e8(0x22e)](_0x598ae2){const _0x2f03a9=_0x2ec2e8;return{'list':await this[_0x2f03a9(0x18d)][_0x2f03a9(0x1d6)]({'url':this[_0x2f03a9(0x18f)][_0x2f03a9(0x1c6)](_0x2f03a9(0x22e)),'method':_0x402e42[_0x2f03a9(0x1e6)],'query':_0x598ae2,'formatter':g[_0x2f03a9(0x1ae)]})};}async[_0x2ec2e8(0x1dd)](_0x4f5ce2){const _0x3f765e=_0x2ec2e8;return{'list':await this[_0x3f765e(0x18d)][_0x3f765e(0x1d6)]({'url':this[_0x3f765e(0x18f)]['resolve']('myOrder'),'method':_0x402e42[_0x3f765e(0x1e6)],'query':_0x4f5ce2,'formatter':_[_0x3f765e(0x1ae)]})};}async[_0x2ec2e8(0x1dc)](_0x2d036d){const _0x1affca=_0x2ec2e8;return{'list':await this[_0x1affca(0x18d)][_0x1affca(0x1d6)]({'url':this[_0x1affca(0x18f)]['resolve'](_0x1affca(0x1dc)),'method':_0x402e42[_0x1affca(0x1e6)],'query':_0x2d036d,'formatter':$[_0x1affca(0x1ae)]})};}async[_0x2ec2e8(0x1f1)](_0x1010d2){const _0x4656de=_0x2ec2e8;await this[_0x4656de(0x18d)][_0x4656de(0x1d6)]({'url':this[_0x4656de(0x18f)][_0x4656de(0x1c6)](_0x4656de(0x1f1)),'method':_0x402e42[_0x4656de(0x1fd)],'body':_0x1010d2});}async[_0x2ec2e8(0x1b3)](_0x31b16b){const _0x34ccce=_0x2ec2e8;await this[_0x34ccce(0x18d)][_0x34ccce(0x1d6)]({'url':this[_0x34ccce(0x18f)][_0x34ccce(0x1c6)](_0x34ccce(0x1b3)),'method':_0x402e42[_0x34ccce(0x1fd)],'body':_0x31b16b});}async[_0x2ec2e8(0x1cb)](_0x58ea0d){const _0x58be1f=_0x2ec2e8;await this[_0x58be1f(0x18d)]['request']({'url':this['pathBuilder'][_0x58be1f(0x1c6)](_0x58be1f(0x1b1)),'method':_0x402e42['PUT'],'body':_0x58ea0d});}async[_0x2ec2e8(0x21a)](_0x4abc51){const _0x3a6e5b=_0x2ec2e8;await this[_0x3a6e5b(0x18d)][_0x3a6e5b(0x1d6)]({'url':this[_0x3a6e5b(0x18f)][_0x3a6e5b(0x1c6)]('children'),'method':_0x402e42[_0x3a6e5b(0x1fd)],'body':_0x4abc51});}async[_0x2ec2e8(0x1e3)](_0x45c655){const _0x72846e=_0x2ec2e8;await this[_0x72846e(0x18d)][_0x72846e(0x1d6)]({'url':this[_0x72846e(0x18f)]['resolve'](_0x72846e(0x21a)),'method':_0x402e42[_0x72846e(0x1f7)],'body':_0x45c655});}async[_0x2ec2e8(0x1a6)](_0x5273ff){const _0x4b2a84=_0x2ec2e8;await this[_0x4b2a84(0x18d)][_0x4b2a84(0x1d6)]({'url':this['pathBuilder'][_0x4b2a84(0x1c6)](_0x4b2a84(0x1bc)),'method':_0x402e42[_0x4b2a84(0x1fd)],'body':_0x5273ff});}async[_0x2ec2e8(0x1b2)](_0x38f440){const _0x377682=_0x2ec2e8;await this[_0x377682(0x18d)][_0x377682(0x1d6)]({'url':this[_0x377682(0x18f)][_0x377682(0x1c6)](_0x377682(0x1bc)),'method':_0x402e42[_0x377682(0x1fd)],'body':_0x38f440});}async['install'](_0x51b8d7){const _0x21f93c=_0x2ec2e8;await this[_0x21f93c(0x18d)][_0x21f93c(0x1d6)]({'url':this[_0x21f93c(0x18f)][_0x21f93c(0x1c6)](_0x21f93c(0x238)),'method':_0x402e42[_0x21f93c(0x1fd)],'body':_0x51b8d7});}async[_0x2ec2e8(0x1ed)](_0x161371){const _0x238ac7=_0x2ec2e8;return{'list':await this[_0x238ac7(0x18d)][_0x238ac7(0x1d6)]({'url':this['pathBuilder']['resolve']('ad/equities'),'method':_0x402e42['GET'],'query':_0x161371,'formatter':v[_0x238ac7(0x1ae)]})};}async[_0x2ec2e8(0x1de)](_0xa90955){const _0x5ed8a4=_0x2ec2e8;return{'list':await this['httpApi'][_0x5ed8a4(0x1d6)]({'url':this[_0x5ed8a4(0x18f)][_0x5ed8a4(0x1c6)](_0x5ed8a4(0x214)),'method':_0x402e42[_0x5ed8a4(0x1e6)],'query':_0xa90955,'formatter':h[_0x5ed8a4(0x1ae)]})};}async['recharges'](_0x27e0c0){const _0x1364b7=_0x2ec2e8;return{'list':await this[_0x1364b7(0x18d)][_0x1364b7(0x1d6)]({'url':this['pathBuilder'][_0x1364b7(0x1c6)](_0x1364b7(0x1e8)),'method':_0x402e42[_0x1364b7(0x1e6)],'query':_0x27e0c0,'formatter':f[_0x1364b7(0x1ae)]})};}async['feedback'](_0x59d880){const _0x3a0c71=_0x2ec2e8;return await this[_0x3a0c71(0x18d)][_0x3a0c71(0x1d6)]({'url':this[_0x3a0c71(0x18f)][_0x3a0c71(0x1c6)](_0x3a0c71(0x206)),'method':_0x402e42[_0x3a0c71(0x216)],'body':_0x59d880,'formatter':L[_0x3a0c71(0x1e1)]});}async[_0x2ec2e8(0x1f8)](_0x19e4db){const _0x1150f5=_0x2ec2e8;return await this[_0x1150f5(0x18d)][_0x1150f5(0x1d6)]({'url':this['pathBuilder']['resolve'](_0x1150f5(0x1f8)),'method':_0x402e42[_0x1150f5(0x1e6)],'query':_0x19e4db,'formatter':N[_0x1150f5(0x1e1)]});}async[_0x2ec2e8(0x1ac)](_0xc43c36){const _0x3dae2a=_0x2ec2e8;await this[_0x3dae2a(0x18d)][_0x3dae2a(0x1d6)]({'url':this[_0x3dae2a(0x18f)][_0x3dae2a(0x1c6)]('subscribe'),'method':_0x402e42[_0x3dae2a(0x1f7)],'body':_0xc43c36});}async[_0x2ec2e8(0x19b)](_0xbf60ad){const _0x4936a7=_0x2ec2e8;await this[_0x4936a7(0x18d)]['request']({'url':this[_0x4936a7(0x18f)][_0x4936a7(0x1c6)](_0x4936a7(0x1a3)),'method':_0x402e42['POST'],'body':_0xbf60ad});}async['systemMessage'](_0x2a7863){const _0x1395bc=_0x2ec2e8;return{'list':await this[_0x1395bc(0x18d)][_0x1395bc(0x1d6)]({'url':this[_0x1395bc(0x18f)][_0x1395bc(0x1c6)](_0x1395bc(0x24a)),'method':_0x402e42[_0x1395bc(0x1e6)],'query':_0x2a7863,'formatter':E[_0x1395bc(0x1ae)]})};}async['removePhone'](_0x5d7af8){const _0x5b7304=_0x2ec2e8;await this['httpApi'][_0x5b7304(0x1d6)]({'url':this[_0x5b7304(0x18f)]['resolve']('phone'),'method':_0x402e42['DELETE'],'body':_0x5d7af8});}}const l=new vt();let gt=class extends k{[_0x2ec2e8(0x1db)](_0x1b73fb){return l['adBenefit'](_0x1b73fb);}},ft=class extends _0x5763c9{['onRun'](_0x2ec87f){return l['bindPhone'](_0x2ec87f);}},bt=class extends _0x5763c9{['onRun'](_0x1294c3){return l['bindProviderPhone'](_0x1294c3);}},wt=class extends _0x5763c9{[_0x2ec2e8(0x1db)](_0x1bfe21){return l['children'](_0x1bfe21);}},Dt=class extends k{[_0x2ec2e8(0x1db)](_0x3ca9f0){return l['consumes'](_0x3ca9f0);}},$t=class extends _0x5763c9{[_0x2ec2e8(0x1db)](_0x5ce515){const _0x5b89ee=_0x2ec2e8;return l[_0x5b89ee(0x1e3)](_0x5ce515);}},_t=class extends _0x5763c9{[_0x2ec2e8(0x1db)](_0x37cb80){return l['feedback'](_0x37cb80);}},Tt=class extends _0x5763c9{[_0x2ec2e8(0x1db)](_0x8c405c){const _0xf867cb=_0x2ec2e8;return l[_0xf867cb(0x1cc)](_0x8c405c);}},At=class extends _0x5763c9{['onRun'](_0xd9b0ab){const _0x3726b8=_0x2ec2e8;return l[_0x3726b8(0x1f8)](_0xd9b0ab);}},xt=class extends _0x5763c9{['onRun'](_0x3be4b0){return l['login'](_0x3be4b0);}},Ot=class extends _0x5763c9{['onRun'](_0x57b929){const _0x4db25e=_0x2ec2e8;return l[_0x4db25e(0x1b3)](_0x57b929);}},Pt=class extends _0x5763c9{[_0x2ec2e8(0x1db)](_0x372a8a){const _0x1ea242=_0x2ec2e8;return l[_0x1ea242(0x1f1)](_0x372a8a);}},kt=class extends k{[_0x2ec2e8(0x1db)](_0x4fd34f){return l['myOrder'](_0x4fd34f);}};class Ut extends k{['onRun'](_0x445500){const _0x3ce8bd=_0x2ec2e8;return l[_0x3ce8bd(0x1de)](_0x445500);}}let Bt=class extends k{[_0x2ec2e8(0x1db)](_0x205f57){return l['recharges'](_0x205f57);}},Et=class extends _0x5763c9{['onRun'](_0x4f9271){const _0x1c8379=_0x2ec2e8;return l[_0x1c8379(0x1a0)](_0x4f9271);}};class Ft extends _0x5763c9{['onRun'](_0x2c494b){const _0x56fd5a=_0x2ec2e8;return l[_0x56fd5a(0x1ac)](_0x2c494b);}}let Lt=class extends _0x5763c9{[_0x2ec2e8(0x1db)](_0x6ba04b){return l['report'](_0x6ba04b);}},Jt=class extends _0x5763c9{[_0x2ec2e8(0x1db)](_0x47f8fd){const _0xa0a1e5=_0x2ec2e8;return l[_0xa0a1e5(0x1b9)](_0x47f8fd);}},qt=class extends k{['onRun'](_0x316746){const _0x277098=_0x2ec2e8;return l[_0x277098(0x1dc)](_0x316746);}};class Mt extends k{[_0x2ec2e8(0x1db)](_0x5dd221){return l['systemMessage'](_0x5dd221);}}class Rt extends _0x5763c9{[_0x2ec2e8(0x1db)](_0x4b03db){const _0x82852c=_0x2ec2e8;return l[_0x82852c(0x1cb)](_0x4b03db);}}class St{get['login'](){return new xt();}get[_0x2ec2e8(0x1b9)](){return new Jt();}get[_0x2ec2e8(0x206)](){return new _t();}get[_0x2ec2e8(0x22e)](){return new Dt();}get['recharges'](){return new Bt();}get[_0x2ec2e8(0x1dd)](){return new kt();}get['subscribe'](){return new qt();}get[_0x2ec2e8(0x1f1)](){return new Pt();}get[_0x2ec2e8(0x1b3)](){return new Ot();}get['updateProfile'](){return new Rt();}get['children'](){return new wt();}get['deleteChildrenPassword'](){return new $t();}get[_0x2ec2e8(0x1a6)](){return new ft();}get[_0x2ec2e8(0x1b2)](){return new bt();}get['install'](){return new Tt();}get[_0x2ec2e8(0x1ed)](){return new gt();}get[_0x2ec2e8(0x1de)](){return new Ut();}get[_0x2ec2e8(0x1f8)](){return new At();}get['removeSubscribe'](){return new Ft();}get['report'](){return new Lt();}get[_0x2ec2e8(0x1bf)](){return new Mt();}get[_0x2ec2e8(0x1a0)](){return new Et();}}class ue extends _0x3c9be4{}ue[_0x2ec2e8(0x192)]=new St();export{v as UserAdBenefitDto,g as UserConsumesDto,ue as UserDomain,L as UserFeedbackDto,p as UserInfoDto,N as UserInviteDto,R as UserLoginDto,_ as UserMyOrderDto,h as UserPayBenefitDto,f as UserRechargesDto,Y as UserStateDto,$ as UserSubscribeDto,E as UserSystemMessageDto};
|
package/package.json
ADDED
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@hfyidu/api",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "业务后台 HTTPS API 封装(类型化接口层,含 HTTP 请求核心),基于 uni-app 场景",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"license": "UNLICENSED",
|
|
7
|
+
"author": "andyshi",
|
|
8
|
+
"repository": {
|
|
9
|
+
"type": "git",
|
|
10
|
+
"url": "git+https://github.com/AndySSi/pfu-monorepo.git",
|
|
11
|
+
"directory": "packages/api"
|
|
12
|
+
},
|
|
13
|
+
"homepage": "https://github.com/AndySSi/pfu-monorepo#readme",
|
|
14
|
+
"bugs": {
|
|
15
|
+
"url": "https://github.com/AndySSi/pfu-monorepo/issues"
|
|
16
|
+
},
|
|
17
|
+
"keywords": [
|
|
18
|
+
"uni-app",
|
|
19
|
+
"uniapp",
|
|
20
|
+
"http",
|
|
21
|
+
"api"
|
|
22
|
+
],
|
|
23
|
+
"main": "./dist/index.cjs",
|
|
24
|
+
"module": "./dist/index.mjs",
|
|
25
|
+
"types": "./dist/index.d.ts",
|
|
26
|
+
"exports": {
|
|
27
|
+
".": {
|
|
28
|
+
"types": "./dist/index.d.ts",
|
|
29
|
+
"import": "./dist/index.mjs",
|
|
30
|
+
"require": "./dist/index.cjs"
|
|
31
|
+
},
|
|
32
|
+
"./http": {
|
|
33
|
+
"types": "./dist/http.d.ts",
|
|
34
|
+
"import": "./dist/http.mjs",
|
|
35
|
+
"require": "./dist/http.cjs"
|
|
36
|
+
},
|
|
37
|
+
"./ad": {
|
|
38
|
+
"types": "./dist/ad.d.ts",
|
|
39
|
+
"import": "./dist/ad.mjs",
|
|
40
|
+
"require": "./dist/ad.cjs"
|
|
41
|
+
},
|
|
42
|
+
"./feedback": {
|
|
43
|
+
"types": "./dist/feedback.d.ts",
|
|
44
|
+
"import": "./dist/feedback.mjs",
|
|
45
|
+
"require": "./dist/feedback.cjs"
|
|
46
|
+
},
|
|
47
|
+
"./index-domain": {
|
|
48
|
+
"types": "./dist/index-domain.d.ts",
|
|
49
|
+
"import": "./dist/index-domain.mjs",
|
|
50
|
+
"require": "./dist/index-domain.cjs"
|
|
51
|
+
},
|
|
52
|
+
"./movies": {
|
|
53
|
+
"types": "./dist/movies.d.ts",
|
|
54
|
+
"import": "./dist/movies.mjs",
|
|
55
|
+
"require": "./dist/movies.cjs"
|
|
56
|
+
},
|
|
57
|
+
"./novel": {
|
|
58
|
+
"types": "./dist/novel.d.ts",
|
|
59
|
+
"import": "./dist/novel.mjs",
|
|
60
|
+
"require": "./dist/novel.cjs"
|
|
61
|
+
},
|
|
62
|
+
"./order": {
|
|
63
|
+
"types": "./dist/order.d.ts",
|
|
64
|
+
"import": "./dist/order.mjs",
|
|
65
|
+
"require": "./dist/order.cjs"
|
|
66
|
+
},
|
|
67
|
+
"./spread": {
|
|
68
|
+
"types": "./dist/spread.d.ts",
|
|
69
|
+
"import": "./dist/spread.mjs",
|
|
70
|
+
"require": "./dist/spread.cjs"
|
|
71
|
+
},
|
|
72
|
+
"./system": {
|
|
73
|
+
"types": "./dist/system.d.ts",
|
|
74
|
+
"import": "./dist/system.mjs",
|
|
75
|
+
"require": "./dist/system.cjs"
|
|
76
|
+
},
|
|
77
|
+
"./user": {
|
|
78
|
+
"types": "./dist/user.d.ts",
|
|
79
|
+
"import": "./dist/user.mjs",
|
|
80
|
+
"require": "./dist/user.cjs"
|
|
81
|
+
}
|
|
82
|
+
},
|
|
83
|
+
"files": ["dist", "README.md"],
|
|
84
|
+
"scripts": {
|
|
85
|
+
"build": "rollup -c && node ../../scripts/obfuscate-dist.mjs",
|
|
86
|
+
"gen": "brc"
|
|
87
|
+
},
|
|
88
|
+
"devDependencies": {
|
|
89
|
+
"@shivip/common-util": "workspace:*",
|
|
90
|
+
"@shivip/mp-core": "workspace:*",
|
|
91
|
+
"@shivip/uni-helper-builder": "workspace:*",
|
|
92
|
+
"@types/crypto-js": "^4.2.2"
|
|
93
|
+
},
|
|
94
|
+
"sideEffects": false,
|
|
95
|
+
"dependencies": {
|
|
96
|
+
"crypto-js": "^4.2.0"
|
|
97
|
+
},
|
|
98
|
+
"peerDependencies": {
|
|
99
|
+
"vue": "^3.2.0"
|
|
100
|
+
},
|
|
101
|
+
"publishConfig": {
|
|
102
|
+
"access": "public"
|
|
103
|
+
}
|
|
104
|
+
}
|