wenum 1.14.0 → 1.15.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 CHANGED
@@ -123,6 +123,11 @@ declare enum GameType {
123
123
  Eight = 8,
124
124
  Nine = 9
125
125
  }
126
+ declare enum DuelGameResult {
127
+ Loss = -1,
128
+ Tie = 0,
129
+ Win = 1
130
+ }
126
131
 
127
132
  declare enum LeaderboardType {
128
133
  Duel = 0,
@@ -254,4 +259,4 @@ declare enum SubjectType {
254
259
  Reply = 4
255
260
  }
256
261
 
257
- export { AccountStatus, AdminAccountStatus, AttendanceStatus, BasketballPosition, BuddyingStatus, ChallengeStatus, CollectionMetaStatus, CollectionType, ConnectionType, EventType, FollowingStatus, GameType, Handedness, LeaderboardType, LocationType, MarketMetaStatus, MarketType, MemberingStatus, PageType, PageUpdateType, PetGender, PostPrivacy, PostType, ProfilePermission, ProfilePrivacy, ProfileStatus, ProfileType, Pronoun, SubjectType, TennisBackhand, TennisLevel };
262
+ export { AccountStatus, AdminAccountStatus, AttendanceStatus, BasketballPosition, BuddyingStatus, ChallengeStatus, CollectionMetaStatus, CollectionType, ConnectionType, DuelGameResult, EventType, FollowingStatus, GameType, Handedness, LeaderboardType, LocationType, MarketMetaStatus, MarketType, MemberingStatus, PageType, PageUpdateType, PetGender, PostPrivacy, PostType, ProfilePermission, ProfilePrivacy, ProfileStatus, ProfileType, Pronoun, SubjectType, TennisBackhand, TennisLevel };
package/dist/index.d.ts CHANGED
@@ -123,6 +123,11 @@ declare enum GameType {
123
123
  Eight = 8,
124
124
  Nine = 9
125
125
  }
126
+ declare enum DuelGameResult {
127
+ Loss = -1,
128
+ Tie = 0,
129
+ Win = 1
130
+ }
126
131
 
127
132
  declare enum LeaderboardType {
128
133
  Duel = 0,
@@ -254,4 +259,4 @@ declare enum SubjectType {
254
259
  Reply = 4
255
260
  }
256
261
 
257
- export { AccountStatus, AdminAccountStatus, AttendanceStatus, BasketballPosition, BuddyingStatus, ChallengeStatus, CollectionMetaStatus, CollectionType, ConnectionType, EventType, FollowingStatus, GameType, Handedness, LeaderboardType, LocationType, MarketMetaStatus, MarketType, MemberingStatus, PageType, PageUpdateType, PetGender, PostPrivacy, PostType, ProfilePermission, ProfilePrivacy, ProfileStatus, ProfileType, Pronoun, SubjectType, TennisBackhand, TennisLevel };
262
+ export { AccountStatus, AdminAccountStatus, AttendanceStatus, BasketballPosition, BuddyingStatus, ChallengeStatus, CollectionMetaStatus, CollectionType, ConnectionType, DuelGameResult, EventType, FollowingStatus, GameType, Handedness, LeaderboardType, LocationType, MarketMetaStatus, MarketType, MemberingStatus, PageType, PageUpdateType, PetGender, PostPrivacy, PostType, ProfilePermission, ProfilePrivacy, ProfileStatus, ProfileType, Pronoun, SubjectType, TennisBackhand, TennisLevel };
package/dist/index.js CHANGED
@@ -29,6 +29,7 @@ __export(index_exports, {
29
29
  CollectionMetaStatus: () => CollectionMetaStatus,
30
30
  CollectionType: () => CollectionType,
31
31
  ConnectionType: () => ConnectionType,
32
+ DuelGameResult: () => DuelGameResult,
32
33
  EventType: () => EventType,
33
34
  FollowingStatus: () => FollowingStatus,
34
35
  GameType: () => GameType,
@@ -200,6 +201,12 @@ var GameType = /* @__PURE__ */ ((GameType2) => {
200
201
  GameType2[GameType2["Nine"] = 9] = "Nine";
201
202
  return GameType2;
202
203
  })(GameType || {});
204
+ var DuelGameResult = /* @__PURE__ */ ((DuelGameResult2) => {
205
+ DuelGameResult2[DuelGameResult2["Loss"] = -1] = "Loss";
206
+ DuelGameResult2[DuelGameResult2["Tie"] = 0] = "Tie";
207
+ DuelGameResult2[DuelGameResult2["Win"] = 1] = "Win";
208
+ return DuelGameResult2;
209
+ })(DuelGameResult || {});
203
210
 
204
211
  // src/page/profile/leaderboard.ts
205
212
  var LeaderboardType = /* @__PURE__ */ ((LeaderboardType2) => {
@@ -368,6 +375,7 @@ var SubjectType = /* @__PURE__ */ ((SubjectType2) => {
368
375
  CollectionMetaStatus,
369
376
  CollectionType,
370
377
  ConnectionType,
378
+ DuelGameResult,
371
379
  EventType,
372
380
  FollowingStatus,
373
381
  GameType,
package/dist/index.mjs CHANGED
@@ -144,6 +144,12 @@ var GameType = /* @__PURE__ */ ((GameType2) => {
144
144
  GameType2[GameType2["Nine"] = 9] = "Nine";
145
145
  return GameType2;
146
146
  })(GameType || {});
147
+ var DuelGameResult = /* @__PURE__ */ ((DuelGameResult2) => {
148
+ DuelGameResult2[DuelGameResult2["Loss"] = -1] = "Loss";
149
+ DuelGameResult2[DuelGameResult2["Tie"] = 0] = "Tie";
150
+ DuelGameResult2[DuelGameResult2["Win"] = 1] = "Win";
151
+ return DuelGameResult2;
152
+ })(DuelGameResult || {});
147
153
 
148
154
  // src/page/profile/leaderboard.ts
149
155
  var LeaderboardType = /* @__PURE__ */ ((LeaderboardType2) => {
@@ -311,6 +317,7 @@ export {
311
317
  CollectionMetaStatus,
312
318
  CollectionType,
313
319
  ConnectionType,
320
+ DuelGameResult,
314
321
  EventType,
315
322
  FollowingStatus,
316
323
  GameType,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wenum",
3
- "version": "1.14.0",
3
+ "version": "1.15.0",
4
4
  "main": "dist/index.js",
5
5
  "module": "dist/index.mjs",
6
6
  "types": "dist/index.d.ts",
@@ -9,4 +9,10 @@ export enum GameType {
9
9
  Seven,
10
10
  Eight,
11
11
  Nine,
12
+ }
13
+
14
+ export enum DuelGameResult {
15
+ Loss = -1,
16
+ Tie = 0,
17
+ Win = 1,
12
18
  }