wenum 1.18.0 → 1.19.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 +30 -2
- package/dist/index.d.ts +30 -2
- package/dist/index.js +35 -1
- package/dist/index.mjs +33 -1
- package/package.json +1 -1
- package/src/interest/category.ts +1 -1
- package/src/interest/index.ts +2 -1
- package/src/interest/interestByCategory/index.ts +3 -0
- package/src/interest/interestByCategory/interest.ts +4 -0
- package/src/interest/interestByCategory/pets.ts +4 -0
- package/src/interest/interestByCategory/sports.ts +20 -0
package/dist/index.d.mts
CHANGED
|
@@ -264,10 +264,38 @@ declare enum CategoryName {
|
|
|
264
264
|
Sports = "sports",
|
|
265
265
|
Pets = "pets",
|
|
266
266
|
Music = "music",
|
|
267
|
-
|
|
267
|
+
Dancing = "dancing",
|
|
268
268
|
Food = "food",
|
|
269
269
|
Photography = "photography",
|
|
270
270
|
Tourism = "tourism"
|
|
271
271
|
}
|
|
272
272
|
|
|
273
|
-
|
|
273
|
+
declare enum PentsInterestName {
|
|
274
|
+
Dog = "dog",
|
|
275
|
+
Cat = "cat"
|
|
276
|
+
}
|
|
277
|
+
|
|
278
|
+
declare enum SportsInterestName {
|
|
279
|
+
Tennis = "tennis",
|
|
280
|
+
Pickleball = "pickleball",
|
|
281
|
+
Basketball = "basketball",
|
|
282
|
+
Golf = "golf",
|
|
283
|
+
Hiking = "hiking",
|
|
284
|
+
Running = "running",
|
|
285
|
+
Gym = "gym",
|
|
286
|
+
Baseball = "baseball",
|
|
287
|
+
Biking = "biking",
|
|
288
|
+
Yoga = "yoga",
|
|
289
|
+
TableTennis = "tabletennis",
|
|
290
|
+
Football = "football",
|
|
291
|
+
Soccer = "soccer",
|
|
292
|
+
Badminton = "badminton",
|
|
293
|
+
Ski = "ski",
|
|
294
|
+
Surf = "surf",
|
|
295
|
+
Swim = "swim",
|
|
296
|
+
Hockey = "hockey"
|
|
297
|
+
}
|
|
298
|
+
|
|
299
|
+
type InterestName = SportsInterestName | PentsInterestName;
|
|
300
|
+
|
|
301
|
+
export { AccountStatus, AdminAccountStatus, AttendanceStatus, BasketballPosition, BuddyingStatus, CategoryName, ChallengeStatus, CollectionMetaStatus, CollectionType, ConnectionType, DuelGameResultType, FollowingStatus, GameType, Handedness, type InterestName, LeaderboardOrder, LeaderboardType, LocationType, MarketMetaStatus, MarketType, MemberingStatus, PageType, PageUpdateType, PentsInterestName, PetGender, PostPrivacy, PostType, ProfilePermission, ProfilePrivacy, ProfileStatus, ProfileType, Pronoun, SportsInterestName, SubjectType, TennisBackhand, TennisLevel };
|
package/dist/index.d.ts
CHANGED
|
@@ -264,10 +264,38 @@ declare enum CategoryName {
|
|
|
264
264
|
Sports = "sports",
|
|
265
265
|
Pets = "pets",
|
|
266
266
|
Music = "music",
|
|
267
|
-
|
|
267
|
+
Dancing = "dancing",
|
|
268
268
|
Food = "food",
|
|
269
269
|
Photography = "photography",
|
|
270
270
|
Tourism = "tourism"
|
|
271
271
|
}
|
|
272
272
|
|
|
273
|
-
|
|
273
|
+
declare enum PentsInterestName {
|
|
274
|
+
Dog = "dog",
|
|
275
|
+
Cat = "cat"
|
|
276
|
+
}
|
|
277
|
+
|
|
278
|
+
declare enum SportsInterestName {
|
|
279
|
+
Tennis = "tennis",
|
|
280
|
+
Pickleball = "pickleball",
|
|
281
|
+
Basketball = "basketball",
|
|
282
|
+
Golf = "golf",
|
|
283
|
+
Hiking = "hiking",
|
|
284
|
+
Running = "running",
|
|
285
|
+
Gym = "gym",
|
|
286
|
+
Baseball = "baseball",
|
|
287
|
+
Biking = "biking",
|
|
288
|
+
Yoga = "yoga",
|
|
289
|
+
TableTennis = "tabletennis",
|
|
290
|
+
Football = "football",
|
|
291
|
+
Soccer = "soccer",
|
|
292
|
+
Badminton = "badminton",
|
|
293
|
+
Ski = "ski",
|
|
294
|
+
Surf = "surf",
|
|
295
|
+
Swim = "swim",
|
|
296
|
+
Hockey = "hockey"
|
|
297
|
+
}
|
|
298
|
+
|
|
299
|
+
type InterestName = SportsInterestName | PentsInterestName;
|
|
300
|
+
|
|
301
|
+
export { AccountStatus, AdminAccountStatus, AttendanceStatus, BasketballPosition, BuddyingStatus, CategoryName, ChallengeStatus, CollectionMetaStatus, CollectionType, ConnectionType, DuelGameResultType, FollowingStatus, GameType, Handedness, type InterestName, LeaderboardOrder, LeaderboardType, LocationType, MarketMetaStatus, MarketType, MemberingStatus, PageType, PageUpdateType, PentsInterestName, PetGender, PostPrivacy, PostType, ProfilePermission, ProfilePrivacy, ProfileStatus, ProfileType, Pronoun, SportsInterestName, SubjectType, TennisBackhand, TennisLevel };
|
package/dist/index.js
CHANGED
|
@@ -42,6 +42,7 @@ __export(index_exports, {
|
|
|
42
42
|
MemberingStatus: () => MemberingStatus,
|
|
43
43
|
PageType: () => PageType,
|
|
44
44
|
PageUpdateType: () => PageUpdateType,
|
|
45
|
+
PentsInterestName: () => PentsInterestName,
|
|
45
46
|
PetGender: () => PetGender,
|
|
46
47
|
PostPrivacy: () => PostPrivacy,
|
|
47
48
|
PostType: () => PostType,
|
|
@@ -50,6 +51,7 @@ __export(index_exports, {
|
|
|
50
51
|
ProfileStatus: () => ProfileStatus,
|
|
51
52
|
ProfileType: () => ProfileType,
|
|
52
53
|
Pronoun: () => Pronoun,
|
|
54
|
+
SportsInterestName: () => SportsInterestName,
|
|
53
55
|
SubjectType: () => SubjectType,
|
|
54
56
|
TennisBackhand: () => TennisBackhand,
|
|
55
57
|
TennisLevel: () => TennisLevel
|
|
@@ -372,12 +374,42 @@ var CategoryName = /* @__PURE__ */ ((CategoryName2) => {
|
|
|
372
374
|
CategoryName2["Sports"] = "sports";
|
|
373
375
|
CategoryName2["Pets"] = "pets";
|
|
374
376
|
CategoryName2["Music"] = "music";
|
|
375
|
-
CategoryName2["
|
|
377
|
+
CategoryName2["Dancing"] = "dancing";
|
|
376
378
|
CategoryName2["Food"] = "food";
|
|
377
379
|
CategoryName2["Photography"] = "photography";
|
|
378
380
|
CategoryName2["Tourism"] = "tourism";
|
|
379
381
|
return CategoryName2;
|
|
380
382
|
})(CategoryName || {});
|
|
383
|
+
|
|
384
|
+
// src/interest/interestByCategory/sports.ts
|
|
385
|
+
var SportsInterestName = /* @__PURE__ */ ((SportsInterestName2) => {
|
|
386
|
+
SportsInterestName2["Tennis"] = "tennis";
|
|
387
|
+
SportsInterestName2["Pickleball"] = "pickleball";
|
|
388
|
+
SportsInterestName2["Basketball"] = "basketball";
|
|
389
|
+
SportsInterestName2["Golf"] = "golf";
|
|
390
|
+
SportsInterestName2["Hiking"] = "hiking";
|
|
391
|
+
SportsInterestName2["Running"] = "running";
|
|
392
|
+
SportsInterestName2["Gym"] = "gym";
|
|
393
|
+
SportsInterestName2["Baseball"] = "baseball";
|
|
394
|
+
SportsInterestName2["Biking"] = "biking";
|
|
395
|
+
SportsInterestName2["Yoga"] = "yoga";
|
|
396
|
+
SportsInterestName2["TableTennis"] = "tabletennis";
|
|
397
|
+
SportsInterestName2["Football"] = "football";
|
|
398
|
+
SportsInterestName2["Soccer"] = "soccer";
|
|
399
|
+
SportsInterestName2["Badminton"] = "badminton";
|
|
400
|
+
SportsInterestName2["Ski"] = "ski";
|
|
401
|
+
SportsInterestName2["Surf"] = "surf";
|
|
402
|
+
SportsInterestName2["Swim"] = "swim";
|
|
403
|
+
SportsInterestName2["Hockey"] = "hockey";
|
|
404
|
+
return SportsInterestName2;
|
|
405
|
+
})(SportsInterestName || {});
|
|
406
|
+
|
|
407
|
+
// src/interest/interestByCategory/pets.ts
|
|
408
|
+
var PentsInterestName = /* @__PURE__ */ ((PentsInterestName2) => {
|
|
409
|
+
PentsInterestName2["Dog"] = "dog";
|
|
410
|
+
PentsInterestName2["Cat"] = "cat";
|
|
411
|
+
return PentsInterestName2;
|
|
412
|
+
})(PentsInterestName || {});
|
|
381
413
|
// Annotate the CommonJS export names for ESM import in node:
|
|
382
414
|
0 && (module.exports = {
|
|
383
415
|
AccountStatus,
|
|
@@ -402,6 +434,7 @@ var CategoryName = /* @__PURE__ */ ((CategoryName2) => {
|
|
|
402
434
|
MemberingStatus,
|
|
403
435
|
PageType,
|
|
404
436
|
PageUpdateType,
|
|
437
|
+
PentsInterestName,
|
|
405
438
|
PetGender,
|
|
406
439
|
PostPrivacy,
|
|
407
440
|
PostType,
|
|
@@ -410,6 +443,7 @@ var CategoryName = /* @__PURE__ */ ((CategoryName2) => {
|
|
|
410
443
|
ProfileStatus,
|
|
411
444
|
ProfileType,
|
|
412
445
|
Pronoun,
|
|
446
|
+
SportsInterestName,
|
|
413
447
|
SubjectType,
|
|
414
448
|
TennisBackhand,
|
|
415
449
|
TennisLevel
|
package/dist/index.mjs
CHANGED
|
@@ -314,12 +314,42 @@ var CategoryName = /* @__PURE__ */ ((CategoryName2) => {
|
|
|
314
314
|
CategoryName2["Sports"] = "sports";
|
|
315
315
|
CategoryName2["Pets"] = "pets";
|
|
316
316
|
CategoryName2["Music"] = "music";
|
|
317
|
-
CategoryName2["
|
|
317
|
+
CategoryName2["Dancing"] = "dancing";
|
|
318
318
|
CategoryName2["Food"] = "food";
|
|
319
319
|
CategoryName2["Photography"] = "photography";
|
|
320
320
|
CategoryName2["Tourism"] = "tourism";
|
|
321
321
|
return CategoryName2;
|
|
322
322
|
})(CategoryName || {});
|
|
323
|
+
|
|
324
|
+
// src/interest/interestByCategory/sports.ts
|
|
325
|
+
var SportsInterestName = /* @__PURE__ */ ((SportsInterestName2) => {
|
|
326
|
+
SportsInterestName2["Tennis"] = "tennis";
|
|
327
|
+
SportsInterestName2["Pickleball"] = "pickleball";
|
|
328
|
+
SportsInterestName2["Basketball"] = "basketball";
|
|
329
|
+
SportsInterestName2["Golf"] = "golf";
|
|
330
|
+
SportsInterestName2["Hiking"] = "hiking";
|
|
331
|
+
SportsInterestName2["Running"] = "running";
|
|
332
|
+
SportsInterestName2["Gym"] = "gym";
|
|
333
|
+
SportsInterestName2["Baseball"] = "baseball";
|
|
334
|
+
SportsInterestName2["Biking"] = "biking";
|
|
335
|
+
SportsInterestName2["Yoga"] = "yoga";
|
|
336
|
+
SportsInterestName2["TableTennis"] = "tabletennis";
|
|
337
|
+
SportsInterestName2["Football"] = "football";
|
|
338
|
+
SportsInterestName2["Soccer"] = "soccer";
|
|
339
|
+
SportsInterestName2["Badminton"] = "badminton";
|
|
340
|
+
SportsInterestName2["Ski"] = "ski";
|
|
341
|
+
SportsInterestName2["Surf"] = "surf";
|
|
342
|
+
SportsInterestName2["Swim"] = "swim";
|
|
343
|
+
SportsInterestName2["Hockey"] = "hockey";
|
|
344
|
+
return SportsInterestName2;
|
|
345
|
+
})(SportsInterestName || {});
|
|
346
|
+
|
|
347
|
+
// src/interest/interestByCategory/pets.ts
|
|
348
|
+
var PentsInterestName = /* @__PURE__ */ ((PentsInterestName2) => {
|
|
349
|
+
PentsInterestName2["Dog"] = "dog";
|
|
350
|
+
PentsInterestName2["Cat"] = "cat";
|
|
351
|
+
return PentsInterestName2;
|
|
352
|
+
})(PentsInterestName || {});
|
|
323
353
|
export {
|
|
324
354
|
AccountStatus,
|
|
325
355
|
AdminAccountStatus,
|
|
@@ -343,6 +373,7 @@ export {
|
|
|
343
373
|
MemberingStatus,
|
|
344
374
|
PageType,
|
|
345
375
|
PageUpdateType,
|
|
376
|
+
PentsInterestName,
|
|
346
377
|
PetGender,
|
|
347
378
|
PostPrivacy,
|
|
348
379
|
PostType,
|
|
@@ -351,6 +382,7 @@ export {
|
|
|
351
382
|
ProfileStatus,
|
|
352
383
|
ProfileType,
|
|
353
384
|
Pronoun,
|
|
385
|
+
SportsInterestName,
|
|
354
386
|
SubjectType,
|
|
355
387
|
TennisBackhand,
|
|
356
388
|
TennisLevel
|
package/package.json
CHANGED
package/src/interest/category.ts
CHANGED
package/src/interest/index.ts
CHANGED
|
@@ -1 +1,2 @@
|
|
|
1
|
-
export * from './category';
|
|
1
|
+
export * from './category';
|
|
2
|
+
export * from './interestByCategory';
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
export enum SportsInterestName {
|
|
2
|
+
Tennis = "tennis",
|
|
3
|
+
Pickleball = "pickleball",
|
|
4
|
+
Basketball = "basketball",
|
|
5
|
+
Golf = "golf",
|
|
6
|
+
Hiking = "hiking",
|
|
7
|
+
Running = "running",
|
|
8
|
+
Gym = "gym",
|
|
9
|
+
Baseball = "baseball",
|
|
10
|
+
Biking = "biking",
|
|
11
|
+
Yoga = "yoga",
|
|
12
|
+
TableTennis = "tabletennis",
|
|
13
|
+
Football = "football",
|
|
14
|
+
Soccer = "soccer",
|
|
15
|
+
Badminton = "badminton",
|
|
16
|
+
Ski = "ski",
|
|
17
|
+
Surf = "surf",
|
|
18
|
+
Swim = "swim",
|
|
19
|
+
Hockey = "hockey"
|
|
20
|
+
}
|