wenum 1.35.1 → 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 +7 -1
- package/dist/index.d.ts +7 -1
- package/dist/index.js +10 -0
- package/dist/index.mjs +9 -0
- package/package.json +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,
|
|
@@ -338,4 +344,4 @@ declare enum NotificationType {
|
|
|
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, NotificationType, PageType, PetsInterestName, PostPrivacy, PostType, ProfilePermission, ProfilePrivacy, ProfileStatus, ProfileType, SportsInterestName, SubjectType, TennisBackhand, TennisLevel, UserPronoun, WeightUnit };
|
|
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,
|
|
@@ -338,4 +344,4 @@ declare enum NotificationType {
|
|
|
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, NotificationType, PageType, PetsInterestName, PostPrivacy, PostType, ProfilePermission, ProfilePrivacy, ProfileStatus, ProfileType, SportsInterestName, SubjectType, TennisBackhand, TennisLevel, UserPronoun, WeightUnit };
|
|
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
|
@@ -49,6 +49,7 @@ __export(index_exports, {
|
|
|
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";
|
|
@@ -493,6 +502,7 @@ var NotificationType = /* @__PURE__ */ ((NotificationType2) => {
|
|
|
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";
|
|
@@ -428,6 +436,7 @@ export {
|
|
|
428
436
|
PetsInterestName,
|
|
429
437
|
PostPrivacy,
|
|
430
438
|
PostType,
|
|
439
|
+
ProfileJoiningType,
|
|
431
440
|
ProfilePermission,
|
|
432
441
|
ProfilePrivacy,
|
|
433
442
|
ProfileStatus,
|
package/package.json
CHANGED