wenum 1.8.0 → 1.9.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
@@ -252,5 +252,17 @@ declare enum TennisGameType {
252
252
  Single = 1,
253
253
  Double = 2
254
254
  }
255
+ declare enum RunningGameType {
256
+ Other = 0,
257
+ M100 = 1,
258
+ M200 = 2,
259
+ M400 = 3,
260
+ M800 = 4,
261
+ M1500 = 5,
262
+ M5k = 6,
263
+ M10k = 7,
264
+ HalfMarathon = 8,
265
+ Marathon = 9
266
+ }
255
267
 
256
- export { AccountStatus, AdminAccountStatus, AttendanceStatus, BasketballGameType, BasketballPosition, BuddyingStatus, ChallengeStatus, CollectionMetaStatus, CollectionType, ConnectionType, EventType, FollowingStatus, GameResult, Handedness, LeaderboardStatus, LocationType, MarketMetaStatus, MarketType, MemberingStatus, PageType, PageUpdateType, PetGender, PostPrivacy, PostType, ProfilePermission, ProfilePrivacy, ProfileStatus, ProfileType, Pronoun, SubjectType, TennisBackhand, TennisGameType, TennisLevel };
268
+ export { AccountStatus, AdminAccountStatus, AttendanceStatus, BasketballGameType, BasketballPosition, BuddyingStatus, ChallengeStatus, CollectionMetaStatus, CollectionType, ConnectionType, EventType, FollowingStatus, GameResult, Handedness, LeaderboardStatus, LocationType, MarketMetaStatus, MarketType, MemberingStatus, PageType, PageUpdateType, PetGender, PostPrivacy, PostType, ProfilePermission, ProfilePrivacy, ProfileStatus, ProfileType, Pronoun, RunningGameType, SubjectType, TennisBackhand, TennisGameType, TennisLevel };
package/dist/index.d.ts CHANGED
@@ -252,5 +252,17 @@ declare enum TennisGameType {
252
252
  Single = 1,
253
253
  Double = 2
254
254
  }
255
+ declare enum RunningGameType {
256
+ Other = 0,
257
+ M100 = 1,
258
+ M200 = 2,
259
+ M400 = 3,
260
+ M800 = 4,
261
+ M1500 = 5,
262
+ M5k = 6,
263
+ M10k = 7,
264
+ HalfMarathon = 8,
265
+ Marathon = 9
266
+ }
255
267
 
256
- export { AccountStatus, AdminAccountStatus, AttendanceStatus, BasketballGameType, BasketballPosition, BuddyingStatus, ChallengeStatus, CollectionMetaStatus, CollectionType, ConnectionType, EventType, FollowingStatus, GameResult, Handedness, LeaderboardStatus, LocationType, MarketMetaStatus, MarketType, MemberingStatus, PageType, PageUpdateType, PetGender, PostPrivacy, PostType, ProfilePermission, ProfilePrivacy, ProfileStatus, ProfileType, Pronoun, SubjectType, TennisBackhand, TennisGameType, TennisLevel };
268
+ export { AccountStatus, AdminAccountStatus, AttendanceStatus, BasketballGameType, BasketballPosition, BuddyingStatus, ChallengeStatus, CollectionMetaStatus, CollectionType, ConnectionType, EventType, FollowingStatus, GameResult, Handedness, LeaderboardStatus, LocationType, MarketMetaStatus, MarketType, MemberingStatus, PageType, PageUpdateType, PetGender, PostPrivacy, PostType, ProfilePermission, ProfilePrivacy, ProfileStatus, ProfileType, Pronoun, RunningGameType, SubjectType, TennisBackhand, TennisGameType, TennisLevel };
package/dist/index.js CHANGED
@@ -49,6 +49,7 @@ __export(index_exports, {
49
49
  ProfileStatus: () => ProfileStatus,
50
50
  ProfileType: () => ProfileType,
51
51
  Pronoun: () => Pronoun,
52
+ RunningGameType: () => RunningGameType,
52
53
  SubjectType: () => SubjectType,
53
54
  TennisBackhand: () => TennisBackhand,
54
55
  TennisGameType: () => TennisGameType,
@@ -359,6 +360,19 @@ var TennisGameType = /* @__PURE__ */ ((TennisGameType2) => {
359
360
  TennisGameType2[TennisGameType2["Double"] = 2] = "Double";
360
361
  return TennisGameType2;
361
362
  })(TennisGameType || {});
363
+ var RunningGameType = /* @__PURE__ */ ((RunningGameType2) => {
364
+ RunningGameType2[RunningGameType2["Other"] = 0] = "Other";
365
+ RunningGameType2[RunningGameType2["M100"] = 1] = "M100";
366
+ RunningGameType2[RunningGameType2["M200"] = 2] = "M200";
367
+ RunningGameType2[RunningGameType2["M400"] = 3] = "M400";
368
+ RunningGameType2[RunningGameType2["M800"] = 4] = "M800";
369
+ RunningGameType2[RunningGameType2["M1500"] = 5] = "M1500";
370
+ RunningGameType2[RunningGameType2["M5k"] = 6] = "M5k";
371
+ RunningGameType2[RunningGameType2["M10k"] = 7] = "M10k";
372
+ RunningGameType2[RunningGameType2["HalfMarathon"] = 8] = "HalfMarathon";
373
+ RunningGameType2[RunningGameType2["Marathon"] = 9] = "Marathon";
374
+ return RunningGameType2;
375
+ })(RunningGameType || {});
362
376
  // Annotate the CommonJS export names for ESM import in node:
363
377
  0 && (module.exports = {
364
378
  AccountStatus,
@@ -390,6 +404,7 @@ var TennisGameType = /* @__PURE__ */ ((TennisGameType2) => {
390
404
  ProfileStatus,
391
405
  ProfileType,
392
406
  Pronoun,
407
+ RunningGameType,
393
408
  SubjectType,
394
409
  TennisBackhand,
395
410
  TennisGameType,
package/dist/index.mjs CHANGED
@@ -301,6 +301,19 @@ var TennisGameType = /* @__PURE__ */ ((TennisGameType2) => {
301
301
  TennisGameType2[TennisGameType2["Double"] = 2] = "Double";
302
302
  return TennisGameType2;
303
303
  })(TennisGameType || {});
304
+ var RunningGameType = /* @__PURE__ */ ((RunningGameType2) => {
305
+ RunningGameType2[RunningGameType2["Other"] = 0] = "Other";
306
+ RunningGameType2[RunningGameType2["M100"] = 1] = "M100";
307
+ RunningGameType2[RunningGameType2["M200"] = 2] = "M200";
308
+ RunningGameType2[RunningGameType2["M400"] = 3] = "M400";
309
+ RunningGameType2[RunningGameType2["M800"] = 4] = "M800";
310
+ RunningGameType2[RunningGameType2["M1500"] = 5] = "M1500";
311
+ RunningGameType2[RunningGameType2["M5k"] = 6] = "M5k";
312
+ RunningGameType2[RunningGameType2["M10k"] = 7] = "M10k";
313
+ RunningGameType2[RunningGameType2["HalfMarathon"] = 8] = "HalfMarathon";
314
+ RunningGameType2[RunningGameType2["Marathon"] = 9] = "Marathon";
315
+ return RunningGameType2;
316
+ })(RunningGameType || {});
304
317
  export {
305
318
  AccountStatus,
306
319
  AdminAccountStatus,
@@ -331,6 +344,7 @@ export {
331
344
  ProfileStatus,
332
345
  ProfileType,
333
346
  Pronoun,
347
+ RunningGameType,
334
348
  SubjectType,
335
349
  TennisBackhand,
336
350
  TennisGameType,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wenum",
3
- "version": "1.8.0",
3
+ "version": "1.9.0",
4
4
  "main": "dist/index.js",
5
5
  "module": "dist/index.mjs",
6
6
  "types": "dist/index.d.ts",
@@ -21,4 +21,17 @@ export enum TennisGameType {
21
21
  Other,
22
22
  Single,
23
23
  Double,
24
+ }
25
+
26
+ export enum RunningGameType {
27
+ Other,
28
+ M100,
29
+ M200,
30
+ M400,
31
+ M800,
32
+ M1500,
33
+ M5k,
34
+ M10k,
35
+ HalfMarathon,
36
+ Marathon,
24
37
  }