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 +3 -3
- package/dist/index.d.ts +3 -3
- package/dist/index.js +3 -3
- package/dist/index.mjs +3 -3
- package/package.json +1 -1
- package/src/interest/interestByCategory/sports.ts +3 -3
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
|
-
|
|
294
|
-
|
|
295
|
-
|
|
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
|
-
|
|
294
|
-
|
|
295
|
-
|
|
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["
|
|
401
|
-
SportsInterestName2["
|
|
402
|
-
SportsInterestName2["
|
|
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["
|
|
341
|
-
SportsInterestName2["
|
|
342
|
-
SportsInterestName2["
|
|
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
|
@@ -13,8 +13,8 @@ export enum SportsInterestName {
|
|
|
13
13
|
Football = "football",
|
|
14
14
|
Soccer = "soccer",
|
|
15
15
|
Badminton = "badminton",
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
16
|
+
Skiing = "skiing",
|
|
17
|
+
Surfing = "surfing",
|
|
18
|
+
Swimming = "swimming",
|
|
19
19
|
Hockey = "hockey"
|
|
20
20
|
}
|