wenum 1.19.0 → 1.19.1

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
@@ -290,9 +290,9 @@ declare enum SportsInterestName {
290
290
  Football = "football",
291
291
  Soccer = "soccer",
292
292
  Badminton = "badminton",
293
- Ski = "ski",
294
- Surf = "surf",
295
- Swim = "swim",
293
+ Skiing = "skiing",
294
+ Surfing = "surfing",
295
+ Swimming = "swimming",
296
296
  Hockey = "hockey"
297
297
  }
298
298
 
package/dist/index.d.ts CHANGED
@@ -290,9 +290,9 @@ declare enum SportsInterestName {
290
290
  Football = "football",
291
291
  Soccer = "soccer",
292
292
  Badminton = "badminton",
293
- Ski = "ski",
294
- Surf = "surf",
295
- Swim = "swim",
293
+ Skiing = "skiing",
294
+ Surfing = "surfing",
295
+ Swimming = "swimming",
296
296
  Hockey = "hockey"
297
297
  }
298
298
 
package/dist/index.js CHANGED
@@ -397,9 +397,9 @@ var SportsInterestName = /* @__PURE__ */ ((SportsInterestName2) => {
397
397
  SportsInterestName2["Football"] = "football";
398
398
  SportsInterestName2["Soccer"] = "soccer";
399
399
  SportsInterestName2["Badminton"] = "badminton";
400
- SportsInterestName2["Ski"] = "ski";
401
- SportsInterestName2["Surf"] = "surf";
402
- SportsInterestName2["Swim"] = "swim";
400
+ SportsInterestName2["Skiing"] = "skiing";
401
+ SportsInterestName2["Surfing"] = "surfing";
402
+ SportsInterestName2["Swimming"] = "swimming";
403
403
  SportsInterestName2["Hockey"] = "hockey";
404
404
  return SportsInterestName2;
405
405
  })(SportsInterestName || {});
package/dist/index.mjs CHANGED
@@ -337,9 +337,9 @@ var SportsInterestName = /* @__PURE__ */ ((SportsInterestName2) => {
337
337
  SportsInterestName2["Football"] = "football";
338
338
  SportsInterestName2["Soccer"] = "soccer";
339
339
  SportsInterestName2["Badminton"] = "badminton";
340
- SportsInterestName2["Ski"] = "ski";
341
- SportsInterestName2["Surf"] = "surf";
342
- SportsInterestName2["Swim"] = "swim";
340
+ SportsInterestName2["Skiing"] = "skiing";
341
+ SportsInterestName2["Surfing"] = "surfing";
342
+ SportsInterestName2["Swimming"] = "swimming";
343
343
  SportsInterestName2["Hockey"] = "hockey";
344
344
  return SportsInterestName2;
345
345
  })(SportsInterestName || {});
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wenum",
3
- "version": "1.19.0",
3
+ "version": "1.19.1",
4
4
  "main": "dist/index.js",
5
5
  "module": "dist/index.mjs",
6
6
  "types": "dist/index.d.ts",
@@ -13,8 +13,8 @@ export enum SportsInterestName {
13
13
  Football = "football",
14
14
  Soccer = "soccer",
15
15
  Badminton = "badminton",
16
- Ski = "ski",
17
- Surf = "surf",
18
- Swim = "swim",
16
+ Skiing = "skiing",
17
+ Surfing = "surfing",
18
+ Swimming = "swimming",
19
19
  Hockey = "hockey"
20
20
  }