wenum 1.35.0 → 1.36.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/dist/index.d.mts +8 -2
- package/dist/index.d.ts +8 -2
- package/dist/index.js +29 -19
- package/dist/index.mjs +27 -18
- package/package.json +1 -1
- package/src/notification.ts +1 -1
- package/src/page/profile/index.ts +2 -1
- package/src/page/profile/joining.ts +5 -0
package/dist/index.d.mts
CHANGED
|
@@ -145,6 +145,12 @@ declare enum AvatarType {
|
|
|
145
145
|
LargeCrop = 3
|
|
146
146
|
}
|
|
147
147
|
|
|
148
|
+
declare enum ProfileJoiningType {
|
|
149
|
+
GameToLeaderboard = 0,
|
|
150
|
+
PlayerToGame = 1,
|
|
151
|
+
MemberToCircle = 2
|
|
152
|
+
}
|
|
153
|
+
|
|
148
154
|
declare enum PostType {
|
|
149
155
|
None = 0,
|
|
150
156
|
Text = 1,
|
|
@@ -321,7 +327,7 @@ declare enum WeightUnit {
|
|
|
321
327
|
Ounce = 3
|
|
322
328
|
}
|
|
323
329
|
|
|
324
|
-
declare enum
|
|
330
|
+
declare enum NotificationType {
|
|
325
331
|
AddBuddy = 0,
|
|
326
332
|
AcceptBuddy = 1,
|
|
327
333
|
UoiJoinCircle = 2,
|
|
@@ -338,4 +344,4 @@ declare enum NotificationTypes {
|
|
|
338
344
|
AcceptInviteGameToLeaderboard = 13
|
|
339
345
|
}
|
|
340
346
|
|
|
341
|
-
export { AccountStatus, AdminAccountStatus, AttendanceStatus, AvatarType, BasketballPosition, BuddyingStatus, CategoryName, ChallengeStatus, CollectionMetaStatus, CollectionType, DuelGameResultType, FollowingStatus, GameType, Gender, Handedness, type InterestName, InterestNameNone, LeaderboardOrder, LeaderboardType, LengthUnit, LocationType, MarketMetaStatus, MarketType, MemberingStatus, MusicInterestName,
|
|
347
|
+
export { AccountStatus, AdminAccountStatus, AttendanceStatus, AvatarType, BasketballPosition, BuddyingStatus, CategoryName, ChallengeStatus, CollectionMetaStatus, CollectionType, DuelGameResultType, FollowingStatus, GameType, Gender, Handedness, type InterestName, InterestNameNone, LeaderboardOrder, LeaderboardType, LengthUnit, LocationType, MarketMetaStatus, MarketType, MemberingStatus, MusicInterestName, NotificationType, PageType, PetsInterestName, PostPrivacy, PostType, ProfileJoiningType, ProfilePermission, ProfilePrivacy, ProfileStatus, ProfileType, SportsInterestName, SubjectType, TennisBackhand, TennisLevel, UserPronoun, WeightUnit };
|
package/dist/index.d.ts
CHANGED
|
@@ -145,6 +145,12 @@ declare enum AvatarType {
|
|
|
145
145
|
LargeCrop = 3
|
|
146
146
|
}
|
|
147
147
|
|
|
148
|
+
declare enum ProfileJoiningType {
|
|
149
|
+
GameToLeaderboard = 0,
|
|
150
|
+
PlayerToGame = 1,
|
|
151
|
+
MemberToCircle = 2
|
|
152
|
+
}
|
|
153
|
+
|
|
148
154
|
declare enum PostType {
|
|
149
155
|
None = 0,
|
|
150
156
|
Text = 1,
|
|
@@ -321,7 +327,7 @@ declare enum WeightUnit {
|
|
|
321
327
|
Ounce = 3
|
|
322
328
|
}
|
|
323
329
|
|
|
324
|
-
declare enum
|
|
330
|
+
declare enum NotificationType {
|
|
325
331
|
AddBuddy = 0,
|
|
326
332
|
AcceptBuddy = 1,
|
|
327
333
|
UoiJoinCircle = 2,
|
|
@@ -338,4 +344,4 @@ declare enum NotificationTypes {
|
|
|
338
344
|
AcceptInviteGameToLeaderboard = 13
|
|
339
345
|
}
|
|
340
346
|
|
|
341
|
-
export { AccountStatus, AdminAccountStatus, AttendanceStatus, AvatarType, BasketballPosition, BuddyingStatus, CategoryName, ChallengeStatus, CollectionMetaStatus, CollectionType, DuelGameResultType, FollowingStatus, GameType, Gender, Handedness, type InterestName, InterestNameNone, LeaderboardOrder, LeaderboardType, LengthUnit, LocationType, MarketMetaStatus, MarketType, MemberingStatus, MusicInterestName,
|
|
347
|
+
export { AccountStatus, AdminAccountStatus, AttendanceStatus, AvatarType, BasketballPosition, BuddyingStatus, CategoryName, ChallengeStatus, CollectionMetaStatus, CollectionType, DuelGameResultType, FollowingStatus, GameType, Gender, Handedness, type InterestName, InterestNameNone, LeaderboardOrder, LeaderboardType, LengthUnit, LocationType, MarketMetaStatus, MarketType, MemberingStatus, MusicInterestName, NotificationType, PageType, PetsInterestName, PostPrivacy, PostType, ProfileJoiningType, ProfilePermission, ProfilePrivacy, ProfileStatus, ProfileType, SportsInterestName, SubjectType, TennisBackhand, TennisLevel, UserPronoun, WeightUnit };
|
package/dist/index.js
CHANGED
|
@@ -44,11 +44,12 @@ __export(index_exports, {
|
|
|
44
44
|
MarketType: () => MarketType,
|
|
45
45
|
MemberingStatus: () => MemberingStatus,
|
|
46
46
|
MusicInterestName: () => MusicInterestName,
|
|
47
|
-
|
|
47
|
+
NotificationType: () => NotificationType,
|
|
48
48
|
PageType: () => PageType,
|
|
49
49
|
PetsInterestName: () => PetsInterestName,
|
|
50
50
|
PostPrivacy: () => PostPrivacy,
|
|
51
51
|
PostType: () => PostType,
|
|
52
|
+
ProfileJoiningType: () => ProfileJoiningType,
|
|
52
53
|
ProfilePermission: () => ProfilePermission,
|
|
53
54
|
ProfilePrivacy: () => ProfilePrivacy,
|
|
54
55
|
ProfileStatus: () => ProfileStatus,
|
|
@@ -235,6 +236,14 @@ var AvatarType = /* @__PURE__ */ ((AvatarType2) => {
|
|
|
235
236
|
return AvatarType2;
|
|
236
237
|
})(AvatarType || {});
|
|
237
238
|
|
|
239
|
+
// src/page/profile/joining.ts
|
|
240
|
+
var ProfileJoiningType = /* @__PURE__ */ ((ProfileJoiningType2) => {
|
|
241
|
+
ProfileJoiningType2[ProfileJoiningType2["GameToLeaderboard"] = 0] = "GameToLeaderboard";
|
|
242
|
+
ProfileJoiningType2[ProfileJoiningType2["PlayerToGame"] = 1] = "PlayerToGame";
|
|
243
|
+
ProfileJoiningType2[ProfileJoiningType2["MemberToCircle"] = 2] = "MemberToCircle";
|
|
244
|
+
return ProfileJoiningType2;
|
|
245
|
+
})(ProfileJoiningType || {});
|
|
246
|
+
|
|
238
247
|
// src/page/post.ts
|
|
239
248
|
var PostType = /* @__PURE__ */ ((PostType2) => {
|
|
240
249
|
PostType2[PostType2["None"] = 0] = "None";
|
|
@@ -445,23 +454,23 @@ var WeightUnit = /* @__PURE__ */ ((WeightUnit2) => {
|
|
|
445
454
|
})(WeightUnit || {});
|
|
446
455
|
|
|
447
456
|
// src/notification.ts
|
|
448
|
-
var
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
return
|
|
464
|
-
})(
|
|
457
|
+
var NotificationType = /* @__PURE__ */ ((NotificationType2) => {
|
|
458
|
+
NotificationType2[NotificationType2["AddBuddy"] = 0] = "AddBuddy";
|
|
459
|
+
NotificationType2[NotificationType2["AcceptBuddy"] = 1] = "AcceptBuddy";
|
|
460
|
+
NotificationType2[NotificationType2["UoiJoinCircle"] = 2] = "UoiJoinCircle";
|
|
461
|
+
NotificationType2[NotificationType2["AcceptUoiJoinCircle"] = 3] = "AcceptUoiJoinCircle";
|
|
462
|
+
NotificationType2[NotificationType2["InviteUoiToCircle"] = 4] = "InviteUoiToCircle";
|
|
463
|
+
NotificationType2[NotificationType2["AcceptInviteUoiToCircle"] = 5] = "AcceptInviteUoiToCircle";
|
|
464
|
+
NotificationType2[NotificationType2["TeamJoinCircle"] = 6] = "TeamJoinCircle";
|
|
465
|
+
NotificationType2[NotificationType2["AcceptTeamJoinCircle"] = 7] = "AcceptTeamJoinCircle";
|
|
466
|
+
NotificationType2[NotificationType2["InviteTeamToCircle"] = 8] = "InviteTeamToCircle";
|
|
467
|
+
NotificationType2[NotificationType2["AcceptInviteTeamToCircle"] = 9] = "AcceptInviteTeamToCircle";
|
|
468
|
+
NotificationType2[NotificationType2["GameJoinLeaderboard"] = 10] = "GameJoinLeaderboard";
|
|
469
|
+
NotificationType2[NotificationType2["AcceptGameJoinLeaderboard"] = 11] = "AcceptGameJoinLeaderboard";
|
|
470
|
+
NotificationType2[NotificationType2["InviteGameToLeaderboard"] = 12] = "InviteGameToLeaderboard";
|
|
471
|
+
NotificationType2[NotificationType2["AcceptInviteGameToLeaderboard"] = 13] = "AcceptInviteGameToLeaderboard";
|
|
472
|
+
return NotificationType2;
|
|
473
|
+
})(NotificationType || {});
|
|
465
474
|
// Annotate the CommonJS export names for ESM import in node:
|
|
466
475
|
0 && (module.exports = {
|
|
467
476
|
AccountStatus,
|
|
@@ -488,11 +497,12 @@ var NotificationTypes = /* @__PURE__ */ ((NotificationTypes2) => {
|
|
|
488
497
|
MarketType,
|
|
489
498
|
MemberingStatus,
|
|
490
499
|
MusicInterestName,
|
|
491
|
-
|
|
500
|
+
NotificationType,
|
|
492
501
|
PageType,
|
|
493
502
|
PetsInterestName,
|
|
494
503
|
PostPrivacy,
|
|
495
504
|
PostType,
|
|
505
|
+
ProfileJoiningType,
|
|
496
506
|
ProfilePermission,
|
|
497
507
|
ProfilePrivacy,
|
|
498
508
|
ProfileStatus,
|
package/dist/index.mjs
CHANGED
|
@@ -171,6 +171,14 @@ var AvatarType = /* @__PURE__ */ ((AvatarType2) => {
|
|
|
171
171
|
return AvatarType2;
|
|
172
172
|
})(AvatarType || {});
|
|
173
173
|
|
|
174
|
+
// src/page/profile/joining.ts
|
|
175
|
+
var ProfileJoiningType = /* @__PURE__ */ ((ProfileJoiningType2) => {
|
|
176
|
+
ProfileJoiningType2[ProfileJoiningType2["GameToLeaderboard"] = 0] = "GameToLeaderboard";
|
|
177
|
+
ProfileJoiningType2[ProfileJoiningType2["PlayerToGame"] = 1] = "PlayerToGame";
|
|
178
|
+
ProfileJoiningType2[ProfileJoiningType2["MemberToCircle"] = 2] = "MemberToCircle";
|
|
179
|
+
return ProfileJoiningType2;
|
|
180
|
+
})(ProfileJoiningType || {});
|
|
181
|
+
|
|
174
182
|
// src/page/post.ts
|
|
175
183
|
var PostType = /* @__PURE__ */ ((PostType2) => {
|
|
176
184
|
PostType2[PostType2["None"] = 0] = "None";
|
|
@@ -381,23 +389,23 @@ var WeightUnit = /* @__PURE__ */ ((WeightUnit2) => {
|
|
|
381
389
|
})(WeightUnit || {});
|
|
382
390
|
|
|
383
391
|
// src/notification.ts
|
|
384
|
-
var
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
return
|
|
400
|
-
})(
|
|
392
|
+
var NotificationType = /* @__PURE__ */ ((NotificationType2) => {
|
|
393
|
+
NotificationType2[NotificationType2["AddBuddy"] = 0] = "AddBuddy";
|
|
394
|
+
NotificationType2[NotificationType2["AcceptBuddy"] = 1] = "AcceptBuddy";
|
|
395
|
+
NotificationType2[NotificationType2["UoiJoinCircle"] = 2] = "UoiJoinCircle";
|
|
396
|
+
NotificationType2[NotificationType2["AcceptUoiJoinCircle"] = 3] = "AcceptUoiJoinCircle";
|
|
397
|
+
NotificationType2[NotificationType2["InviteUoiToCircle"] = 4] = "InviteUoiToCircle";
|
|
398
|
+
NotificationType2[NotificationType2["AcceptInviteUoiToCircle"] = 5] = "AcceptInviteUoiToCircle";
|
|
399
|
+
NotificationType2[NotificationType2["TeamJoinCircle"] = 6] = "TeamJoinCircle";
|
|
400
|
+
NotificationType2[NotificationType2["AcceptTeamJoinCircle"] = 7] = "AcceptTeamJoinCircle";
|
|
401
|
+
NotificationType2[NotificationType2["InviteTeamToCircle"] = 8] = "InviteTeamToCircle";
|
|
402
|
+
NotificationType2[NotificationType2["AcceptInviteTeamToCircle"] = 9] = "AcceptInviteTeamToCircle";
|
|
403
|
+
NotificationType2[NotificationType2["GameJoinLeaderboard"] = 10] = "GameJoinLeaderboard";
|
|
404
|
+
NotificationType2[NotificationType2["AcceptGameJoinLeaderboard"] = 11] = "AcceptGameJoinLeaderboard";
|
|
405
|
+
NotificationType2[NotificationType2["InviteGameToLeaderboard"] = 12] = "InviteGameToLeaderboard";
|
|
406
|
+
NotificationType2[NotificationType2["AcceptInviteGameToLeaderboard"] = 13] = "AcceptInviteGameToLeaderboard";
|
|
407
|
+
return NotificationType2;
|
|
408
|
+
})(NotificationType || {});
|
|
401
409
|
export {
|
|
402
410
|
AccountStatus,
|
|
403
411
|
AdminAccountStatus,
|
|
@@ -423,11 +431,12 @@ export {
|
|
|
423
431
|
MarketType,
|
|
424
432
|
MemberingStatus,
|
|
425
433
|
MusicInterestName,
|
|
426
|
-
|
|
434
|
+
NotificationType,
|
|
427
435
|
PageType,
|
|
428
436
|
PetsInterestName,
|
|
429
437
|
PostPrivacy,
|
|
430
438
|
PostType,
|
|
439
|
+
ProfileJoiningType,
|
|
431
440
|
ProfilePermission,
|
|
432
441
|
ProfilePrivacy,
|
|
433
442
|
ProfileStatus,
|
package/package.json
CHANGED
package/src/notification.ts
CHANGED