wenum 1.19.2 → 1.20.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 +11 -6
- package/dist/index.d.ts +11 -6
- package/dist/index.js +15 -2
- package/dist/index.mjs +13 -2
- package/package.json +1 -1
- package/src/interest/interestByCategory/index.ts +2 -1
- package/src/interest/interestByCategory/interest.ts +3 -1
- package/src/interest/interestByCategory/music.ts +5 -0
- package/src/interest/interestByCategory/pets.ts +0 -1
- package/src/interest/interestByCategory/sports.ts +0 -1
package/dist/index.d.mts
CHANGED
|
@@ -272,11 +272,16 @@ declare enum CategoryName {
|
|
|
272
272
|
None = ""
|
|
273
273
|
}
|
|
274
274
|
|
|
275
|
+
declare enum MusicInterestName {
|
|
276
|
+
Guitar = "guitar",
|
|
277
|
+
Singing = "singing",
|
|
278
|
+
Other = "other"
|
|
279
|
+
}
|
|
280
|
+
|
|
275
281
|
declare enum PetsInterestName {
|
|
276
282
|
Dog = "dog",
|
|
277
283
|
Cat = "cat",
|
|
278
|
-
Other = "other"
|
|
279
|
-
None = ""
|
|
284
|
+
Other = "other"
|
|
280
285
|
}
|
|
281
286
|
|
|
282
287
|
declare enum SportsInterestName {
|
|
@@ -298,10 +303,10 @@ declare enum SportsInterestName {
|
|
|
298
303
|
Surfing = "surfing",
|
|
299
304
|
Swimming = "swimming",
|
|
300
305
|
Hockey = "hockey",
|
|
301
|
-
Other = "other"
|
|
302
|
-
None = ""
|
|
306
|
+
Other = "other"
|
|
303
307
|
}
|
|
304
308
|
|
|
305
|
-
type InterestName = SportsInterestName | PetsInterestName;
|
|
309
|
+
type InterestName = SportsInterestName | PetsInterestName | MusicInterestName | '';
|
|
310
|
+
declare const InterestNameNone: InterestName;
|
|
306
311
|
|
|
307
|
-
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, PetGender, PetsInterestName, PostPrivacy, PostType, ProfilePermission, ProfilePrivacy, ProfileStatus, ProfileType, Pronoun, SportsInterestName, SubjectType, TennisBackhand, TennisLevel };
|
|
312
|
+
export { AccountStatus, AdminAccountStatus, AttendanceStatus, BasketballPosition, BuddyingStatus, CategoryName, ChallengeStatus, CollectionMetaStatus, CollectionType, ConnectionType, DuelGameResultType, FollowingStatus, GameType, Handedness, type InterestName, InterestNameNone, LeaderboardOrder, LeaderboardType, LocationType, MarketMetaStatus, MarketType, MemberingStatus, MusicInterestName, PageType, PageUpdateType, PetGender, PetsInterestName, PostPrivacy, PostType, ProfilePermission, ProfilePrivacy, ProfileStatus, ProfileType, Pronoun, SportsInterestName, SubjectType, TennisBackhand, TennisLevel };
|
package/dist/index.d.ts
CHANGED
|
@@ -272,11 +272,16 @@ declare enum CategoryName {
|
|
|
272
272
|
None = ""
|
|
273
273
|
}
|
|
274
274
|
|
|
275
|
+
declare enum MusicInterestName {
|
|
276
|
+
Guitar = "guitar",
|
|
277
|
+
Singing = "singing",
|
|
278
|
+
Other = "other"
|
|
279
|
+
}
|
|
280
|
+
|
|
275
281
|
declare enum PetsInterestName {
|
|
276
282
|
Dog = "dog",
|
|
277
283
|
Cat = "cat",
|
|
278
|
-
Other = "other"
|
|
279
|
-
None = ""
|
|
284
|
+
Other = "other"
|
|
280
285
|
}
|
|
281
286
|
|
|
282
287
|
declare enum SportsInterestName {
|
|
@@ -298,10 +303,10 @@ declare enum SportsInterestName {
|
|
|
298
303
|
Surfing = "surfing",
|
|
299
304
|
Swimming = "swimming",
|
|
300
305
|
Hockey = "hockey",
|
|
301
|
-
Other = "other"
|
|
302
|
-
None = ""
|
|
306
|
+
Other = "other"
|
|
303
307
|
}
|
|
304
308
|
|
|
305
|
-
type InterestName = SportsInterestName | PetsInterestName;
|
|
309
|
+
type InterestName = SportsInterestName | PetsInterestName | MusicInterestName | '';
|
|
310
|
+
declare const InterestNameNone: InterestName;
|
|
306
311
|
|
|
307
|
-
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, PetGender, PetsInterestName, PostPrivacy, PostType, ProfilePermission, ProfilePrivacy, ProfileStatus, ProfileType, Pronoun, SportsInterestName, SubjectType, TennisBackhand, TennisLevel };
|
|
312
|
+
export { AccountStatus, AdminAccountStatus, AttendanceStatus, BasketballPosition, BuddyingStatus, CategoryName, ChallengeStatus, CollectionMetaStatus, CollectionType, ConnectionType, DuelGameResultType, FollowingStatus, GameType, Handedness, type InterestName, InterestNameNone, LeaderboardOrder, LeaderboardType, LocationType, MarketMetaStatus, MarketType, MemberingStatus, MusicInterestName, PageType, PageUpdateType, PetGender, PetsInterestName, PostPrivacy, PostType, ProfilePermission, ProfilePrivacy, ProfileStatus, ProfileType, Pronoun, SportsInterestName, SubjectType, TennisBackhand, TennisLevel };
|
package/dist/index.js
CHANGED
|
@@ -34,12 +34,14 @@ __export(index_exports, {
|
|
|
34
34
|
FollowingStatus: () => FollowingStatus,
|
|
35
35
|
GameType: () => GameType,
|
|
36
36
|
Handedness: () => Handedness,
|
|
37
|
+
InterestNameNone: () => InterestNameNone,
|
|
37
38
|
LeaderboardOrder: () => LeaderboardOrder,
|
|
38
39
|
LeaderboardType: () => LeaderboardType,
|
|
39
40
|
LocationType: () => LocationType,
|
|
40
41
|
MarketMetaStatus: () => MarketMetaStatus,
|
|
41
42
|
MarketType: () => MarketType,
|
|
42
43
|
MemberingStatus: () => MemberingStatus,
|
|
44
|
+
MusicInterestName: () => MusicInterestName,
|
|
43
45
|
PageType: () => PageType,
|
|
44
46
|
PageUpdateType: () => PageUpdateType,
|
|
45
47
|
PetGender: () => PetGender,
|
|
@@ -383,6 +385,9 @@ var CategoryName = /* @__PURE__ */ ((CategoryName2) => {
|
|
|
383
385
|
return CategoryName2;
|
|
384
386
|
})(CategoryName || {});
|
|
385
387
|
|
|
388
|
+
// src/interest/interestByCategory/interest.ts
|
|
389
|
+
var InterestNameNone = "";
|
|
390
|
+
|
|
386
391
|
// src/interest/interestByCategory/sports.ts
|
|
387
392
|
var SportsInterestName = /* @__PURE__ */ ((SportsInterestName2) => {
|
|
388
393
|
SportsInterestName2["Tennis"] = "tennis";
|
|
@@ -404,7 +409,6 @@ var SportsInterestName = /* @__PURE__ */ ((SportsInterestName2) => {
|
|
|
404
409
|
SportsInterestName2["Swimming"] = "swimming";
|
|
405
410
|
SportsInterestName2["Hockey"] = "hockey";
|
|
406
411
|
SportsInterestName2["Other"] = "other";
|
|
407
|
-
SportsInterestName2["None"] = "";
|
|
408
412
|
return SportsInterestName2;
|
|
409
413
|
})(SportsInterestName || {});
|
|
410
414
|
|
|
@@ -413,9 +417,16 @@ var PetsInterestName = /* @__PURE__ */ ((PetsInterestName2) => {
|
|
|
413
417
|
PetsInterestName2["Dog"] = "dog";
|
|
414
418
|
PetsInterestName2["Cat"] = "cat";
|
|
415
419
|
PetsInterestName2["Other"] = "other";
|
|
416
|
-
PetsInterestName2["None"] = "";
|
|
417
420
|
return PetsInterestName2;
|
|
418
421
|
})(PetsInterestName || {});
|
|
422
|
+
|
|
423
|
+
// src/interest/interestByCategory/music.ts
|
|
424
|
+
var MusicInterestName = /* @__PURE__ */ ((MusicInterestName2) => {
|
|
425
|
+
MusicInterestName2["Guitar"] = "guitar";
|
|
426
|
+
MusicInterestName2["Singing"] = "singing";
|
|
427
|
+
MusicInterestName2["Other"] = "other";
|
|
428
|
+
return MusicInterestName2;
|
|
429
|
+
})(MusicInterestName || {});
|
|
419
430
|
// Annotate the CommonJS export names for ESM import in node:
|
|
420
431
|
0 && (module.exports = {
|
|
421
432
|
AccountStatus,
|
|
@@ -432,12 +443,14 @@ var PetsInterestName = /* @__PURE__ */ ((PetsInterestName2) => {
|
|
|
432
443
|
FollowingStatus,
|
|
433
444
|
GameType,
|
|
434
445
|
Handedness,
|
|
446
|
+
InterestNameNone,
|
|
435
447
|
LeaderboardOrder,
|
|
436
448
|
LeaderboardType,
|
|
437
449
|
LocationType,
|
|
438
450
|
MarketMetaStatus,
|
|
439
451
|
MarketType,
|
|
440
452
|
MemberingStatus,
|
|
453
|
+
MusicInterestName,
|
|
441
454
|
PageType,
|
|
442
455
|
PageUpdateType,
|
|
443
456
|
PetGender,
|
package/dist/index.mjs
CHANGED
|
@@ -323,6 +323,9 @@ var CategoryName = /* @__PURE__ */ ((CategoryName2) => {
|
|
|
323
323
|
return CategoryName2;
|
|
324
324
|
})(CategoryName || {});
|
|
325
325
|
|
|
326
|
+
// src/interest/interestByCategory/interest.ts
|
|
327
|
+
var InterestNameNone = "";
|
|
328
|
+
|
|
326
329
|
// src/interest/interestByCategory/sports.ts
|
|
327
330
|
var SportsInterestName = /* @__PURE__ */ ((SportsInterestName2) => {
|
|
328
331
|
SportsInterestName2["Tennis"] = "tennis";
|
|
@@ -344,7 +347,6 @@ var SportsInterestName = /* @__PURE__ */ ((SportsInterestName2) => {
|
|
|
344
347
|
SportsInterestName2["Swimming"] = "swimming";
|
|
345
348
|
SportsInterestName2["Hockey"] = "hockey";
|
|
346
349
|
SportsInterestName2["Other"] = "other";
|
|
347
|
-
SportsInterestName2["None"] = "";
|
|
348
350
|
return SportsInterestName2;
|
|
349
351
|
})(SportsInterestName || {});
|
|
350
352
|
|
|
@@ -353,9 +355,16 @@ var PetsInterestName = /* @__PURE__ */ ((PetsInterestName2) => {
|
|
|
353
355
|
PetsInterestName2["Dog"] = "dog";
|
|
354
356
|
PetsInterestName2["Cat"] = "cat";
|
|
355
357
|
PetsInterestName2["Other"] = "other";
|
|
356
|
-
PetsInterestName2["None"] = "";
|
|
357
358
|
return PetsInterestName2;
|
|
358
359
|
})(PetsInterestName || {});
|
|
360
|
+
|
|
361
|
+
// src/interest/interestByCategory/music.ts
|
|
362
|
+
var MusicInterestName = /* @__PURE__ */ ((MusicInterestName2) => {
|
|
363
|
+
MusicInterestName2["Guitar"] = "guitar";
|
|
364
|
+
MusicInterestName2["Singing"] = "singing";
|
|
365
|
+
MusicInterestName2["Other"] = "other";
|
|
366
|
+
return MusicInterestName2;
|
|
367
|
+
})(MusicInterestName || {});
|
|
359
368
|
export {
|
|
360
369
|
AccountStatus,
|
|
361
370
|
AdminAccountStatus,
|
|
@@ -371,12 +380,14 @@ export {
|
|
|
371
380
|
FollowingStatus,
|
|
372
381
|
GameType,
|
|
373
382
|
Handedness,
|
|
383
|
+
InterestNameNone,
|
|
374
384
|
LeaderboardOrder,
|
|
375
385
|
LeaderboardType,
|
|
376
386
|
LocationType,
|
|
377
387
|
MarketMetaStatus,
|
|
378
388
|
MarketType,
|
|
379
389
|
MemberingStatus,
|
|
390
|
+
MusicInterestName,
|
|
380
391
|
PageType,
|
|
381
392
|
PageUpdateType,
|
|
382
393
|
PetGender,
|
package/package.json
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
|
+
import { MusicInterestName } from './music';
|
|
1
2
|
import { PetsInterestName } from './pets';
|
|
2
3
|
import { SportsInterestName } from './sports';
|
|
3
4
|
|
|
4
|
-
export type InterestName = SportsInterestName | PetsInterestName;
|
|
5
|
+
export type InterestName = SportsInterestName | PetsInterestName | MusicInterestName | '';
|
|
5
6
|
|
|
7
|
+
export const InterestNameNone: InterestName = '';
|