wenum 1.19.2 → 1.19.3
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 +5 -6
- package/dist/index.d.ts +5 -6
- package/dist/index.js +5 -2
- package/dist/index.mjs +4 -2
- package/package.json +1 -1
- package/src/interest/interestByCategory/interest.ts +2 -1
- package/src/interest/interestByCategory/pets.ts +0 -1
- package/src/interest/interestByCategory/sports.ts +0 -1
package/dist/index.d.mts
CHANGED
|
@@ -275,8 +275,7 @@ declare enum CategoryName {
|
|
|
275
275
|
declare enum PetsInterestName {
|
|
276
276
|
Dog = "dog",
|
|
277
277
|
Cat = "cat",
|
|
278
|
-
Other = "other"
|
|
279
|
-
None = ""
|
|
278
|
+
Other = "other"
|
|
280
279
|
}
|
|
281
280
|
|
|
282
281
|
declare enum SportsInterestName {
|
|
@@ -298,10 +297,10 @@ declare enum SportsInterestName {
|
|
|
298
297
|
Surfing = "surfing",
|
|
299
298
|
Swimming = "swimming",
|
|
300
299
|
Hockey = "hockey",
|
|
301
|
-
Other = "other"
|
|
302
|
-
None = ""
|
|
300
|
+
Other = "other"
|
|
303
301
|
}
|
|
304
302
|
|
|
305
|
-
type InterestName = SportsInterestName | PetsInterestName;
|
|
303
|
+
type InterestName = SportsInterestName | PetsInterestName | '';
|
|
304
|
+
declare const InterestNameNone: InterestName;
|
|
306
305
|
|
|
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 };
|
|
306
|
+
export { AccountStatus, AdminAccountStatus, AttendanceStatus, BasketballPosition, BuddyingStatus, CategoryName, ChallengeStatus, CollectionMetaStatus, CollectionType, ConnectionType, DuelGameResultType, FollowingStatus, GameType, Handedness, type InterestName, InterestNameNone, LeaderboardOrder, LeaderboardType, LocationType, MarketMetaStatus, MarketType, MemberingStatus, PageType, PageUpdateType, PetGender, PetsInterestName, PostPrivacy, PostType, ProfilePermission, ProfilePrivacy, ProfileStatus, ProfileType, Pronoun, SportsInterestName, SubjectType, TennisBackhand, TennisLevel };
|
package/dist/index.d.ts
CHANGED
|
@@ -275,8 +275,7 @@ declare enum CategoryName {
|
|
|
275
275
|
declare enum PetsInterestName {
|
|
276
276
|
Dog = "dog",
|
|
277
277
|
Cat = "cat",
|
|
278
|
-
Other = "other"
|
|
279
|
-
None = ""
|
|
278
|
+
Other = "other"
|
|
280
279
|
}
|
|
281
280
|
|
|
282
281
|
declare enum SportsInterestName {
|
|
@@ -298,10 +297,10 @@ declare enum SportsInterestName {
|
|
|
298
297
|
Surfing = "surfing",
|
|
299
298
|
Swimming = "swimming",
|
|
300
299
|
Hockey = "hockey",
|
|
301
|
-
Other = "other"
|
|
302
|
-
None = ""
|
|
300
|
+
Other = "other"
|
|
303
301
|
}
|
|
304
302
|
|
|
305
|
-
type InterestName = SportsInterestName | PetsInterestName;
|
|
303
|
+
type InterestName = SportsInterestName | PetsInterestName | '';
|
|
304
|
+
declare const InterestNameNone: InterestName;
|
|
306
305
|
|
|
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 };
|
|
306
|
+
export { AccountStatus, AdminAccountStatus, AttendanceStatus, BasketballPosition, BuddyingStatus, CategoryName, ChallengeStatus, CollectionMetaStatus, CollectionType, ConnectionType, DuelGameResultType, FollowingStatus, GameType, Handedness, type InterestName, InterestNameNone, LeaderboardOrder, LeaderboardType, LocationType, MarketMetaStatus, MarketType, MemberingStatus, PageType, PageUpdateType, PetGender, PetsInterestName, PostPrivacy, PostType, ProfilePermission, ProfilePrivacy, ProfileStatus, ProfileType, Pronoun, SportsInterestName, SubjectType, TennisBackhand, TennisLevel };
|
package/dist/index.js
CHANGED
|
@@ -34,6 +34,7 @@ __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,
|
|
@@ -383,6 +384,9 @@ var CategoryName = /* @__PURE__ */ ((CategoryName2) => {
|
|
|
383
384
|
return CategoryName2;
|
|
384
385
|
})(CategoryName || {});
|
|
385
386
|
|
|
387
|
+
// src/interest/interestByCategory/interest.ts
|
|
388
|
+
var InterestNameNone = "";
|
|
389
|
+
|
|
386
390
|
// src/interest/interestByCategory/sports.ts
|
|
387
391
|
var SportsInterestName = /* @__PURE__ */ ((SportsInterestName2) => {
|
|
388
392
|
SportsInterestName2["Tennis"] = "tennis";
|
|
@@ -404,7 +408,6 @@ var SportsInterestName = /* @__PURE__ */ ((SportsInterestName2) => {
|
|
|
404
408
|
SportsInterestName2["Swimming"] = "swimming";
|
|
405
409
|
SportsInterestName2["Hockey"] = "hockey";
|
|
406
410
|
SportsInterestName2["Other"] = "other";
|
|
407
|
-
SportsInterestName2["None"] = "";
|
|
408
411
|
return SportsInterestName2;
|
|
409
412
|
})(SportsInterestName || {});
|
|
410
413
|
|
|
@@ -413,7 +416,6 @@ var PetsInterestName = /* @__PURE__ */ ((PetsInterestName2) => {
|
|
|
413
416
|
PetsInterestName2["Dog"] = "dog";
|
|
414
417
|
PetsInterestName2["Cat"] = "cat";
|
|
415
418
|
PetsInterestName2["Other"] = "other";
|
|
416
|
-
PetsInterestName2["None"] = "";
|
|
417
419
|
return PetsInterestName2;
|
|
418
420
|
})(PetsInterestName || {});
|
|
419
421
|
// Annotate the CommonJS export names for ESM import in node:
|
|
@@ -432,6 +434,7 @@ var PetsInterestName = /* @__PURE__ */ ((PetsInterestName2) => {
|
|
|
432
434
|
FollowingStatus,
|
|
433
435
|
GameType,
|
|
434
436
|
Handedness,
|
|
437
|
+
InterestNameNone,
|
|
435
438
|
LeaderboardOrder,
|
|
436
439
|
LeaderboardType,
|
|
437
440
|
LocationType,
|
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,7 +355,6 @@ 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 || {});
|
|
359
360
|
export {
|
|
@@ -371,6 +372,7 @@ export {
|
|
|
371
372
|
FollowingStatus,
|
|
372
373
|
GameType,
|
|
373
374
|
Handedness,
|
|
375
|
+
InterestNameNone,
|
|
374
376
|
LeaderboardOrder,
|
|
375
377
|
LeaderboardType,
|
|
376
378
|
LocationType,
|
package/package.json
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { PetsInterestName } from './pets';
|
|
2
2
|
import { SportsInterestName } from './sports';
|
|
3
3
|
|
|
4
|
-
export type InterestName = SportsInterestName | PetsInterestName;
|
|
4
|
+
export type InterestName = SportsInterestName | PetsInterestName | '';
|
|
5
5
|
|
|
6
|
+
export const InterestNameNone: InterestName = '';
|