wenum 1.36.0 → 1.38.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 +2 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.js +1 -0
- package/dist/index.mjs +1 -0
- package/package.json +1 -1
- package/src/notification.ts +1 -0
package/dist/index.d.mts
CHANGED
|
@@ -341,7 +341,8 @@ declare enum NotificationType {
|
|
|
341
341
|
GameJoinLeaderboard = 10,
|
|
342
342
|
AcceptGameJoinLeaderboard = 11,
|
|
343
343
|
InviteGameToLeaderboard = 12,
|
|
344
|
-
AcceptInviteGameToLeaderboard = 13
|
|
344
|
+
AcceptInviteGameToLeaderboard = 13,
|
|
345
|
+
CreatePost = 14
|
|
345
346
|
}
|
|
346
347
|
|
|
347
348
|
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
|
@@ -341,7 +341,8 @@ declare enum NotificationType {
|
|
|
341
341
|
GameJoinLeaderboard = 10,
|
|
342
342
|
AcceptGameJoinLeaderboard = 11,
|
|
343
343
|
InviteGameToLeaderboard = 12,
|
|
344
|
-
AcceptInviteGameToLeaderboard = 13
|
|
344
|
+
AcceptInviteGameToLeaderboard = 13,
|
|
345
|
+
CreatePost = 14
|
|
345
346
|
}
|
|
346
347
|
|
|
347
348
|
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
|
@@ -469,6 +469,7 @@ var NotificationType = /* @__PURE__ */ ((NotificationType2) => {
|
|
|
469
469
|
NotificationType2[NotificationType2["AcceptGameJoinLeaderboard"] = 11] = "AcceptGameJoinLeaderboard";
|
|
470
470
|
NotificationType2[NotificationType2["InviteGameToLeaderboard"] = 12] = "InviteGameToLeaderboard";
|
|
471
471
|
NotificationType2[NotificationType2["AcceptInviteGameToLeaderboard"] = 13] = "AcceptInviteGameToLeaderboard";
|
|
472
|
+
NotificationType2[NotificationType2["CreatePost"] = 14] = "CreatePost";
|
|
472
473
|
return NotificationType2;
|
|
473
474
|
})(NotificationType || {});
|
|
474
475
|
// Annotate the CommonJS export names for ESM import in node:
|
package/dist/index.mjs
CHANGED
|
@@ -404,6 +404,7 @@ var NotificationType = /* @__PURE__ */ ((NotificationType2) => {
|
|
|
404
404
|
NotificationType2[NotificationType2["AcceptGameJoinLeaderboard"] = 11] = "AcceptGameJoinLeaderboard";
|
|
405
405
|
NotificationType2[NotificationType2["InviteGameToLeaderboard"] = 12] = "InviteGameToLeaderboard";
|
|
406
406
|
NotificationType2[NotificationType2["AcceptInviteGameToLeaderboard"] = 13] = "AcceptInviteGameToLeaderboard";
|
|
407
|
+
NotificationType2[NotificationType2["CreatePost"] = 14] = "CreatePost";
|
|
407
408
|
return NotificationType2;
|
|
408
409
|
})(NotificationType || {});
|
|
409
410
|
export {
|
package/package.json
CHANGED